MyBB Community Forums

Full Version: Don't show the subject blurry
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I'm looking for a fuzzy show topic plugin to guests.

As in the picture below

[Image: nFLCnP.png]
Does anyone know about this topic?
Where did you find this?
(2020-03-04, 05:43 PM)Salvation Wrote: [ -> ]Where did you find this?

With css codes for xenforo,


https://xenforo.gen.tr/xenforo-kaynaklari/xenforo-2-0-2-1-seo-dostu-icerik-gizleme.824/#

  1. CSS you already have - the worst is behind us Big Grin 
  2. You have to install a plugin from this thread: https://community.mybb.com/thread-31860.html
  3. Edit Template: postbit or postbit_classic...
Find:
class="post_body scaleimages

And replace:
class="post_body <if !$mybb->user['uid'] then>not-logged-in</if> scaleimages

And in CSS from the above XenForo website:
Find:
#XF[data-logged-in="false"] {

And replace:
.not-logged-in {

Cheers! Smile
Haven't tested, so if you have problems with above feel free to post Smile
(2020-03-04, 08:26 PM)Salvation Wrote: [ -> ]Cheers! Smile
Haven't tested, so if you have problems with above feel free to post Smile


unfortunately it didn't work
What is your forum address?
(2020-03-04, 09:35 PM)Salvation Wrote: [ -> ]What is your forum address?


Forum
It does not work, because you did not add CSS.
global.css

.not-logged-in {
    .p-body {
        &:before {
            content: url(styles/uyari/misafir.png);///Resim uzantısını buradan düzenleyebilirsiniz.///
            position: fixed;
            left: 35%;
            top: 40%;
            z-index: 3;
      
        }
	}
}
@media screen and (max-width:600px){
.not-logged-in {
    .p-body {
        &:before {
            content: url(styles/uyari/misafirmobil.png); ///Mobil için resim uzantısınıda buradan düzenleyiniz.///
      
            width:100%;
            position:fixed;
            left:7%;
            z-index:3;
      
        }
    }
}
	///İçerik Gizleme Blur Efekti Başlangıç///
.not-logged-in {
    .block--messages {
        .message-content {
            -webkit-filter: blur(4px);
            -moz-filter: blur(4px);
            -ms-filter: blur(4px);
            -o-filter: blur(4px);
            filter: blur(4px);
            filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='2');
            pointer-events: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            -o-user-select: none;
            user-select: none;
        }
    }

}
///İçerik Gizleme Blur Efekti Bitiş///


postbit postbit classic

<div class="post_body <if !$mybb->user['uid'] then>not-logged-in</if> scaleimages" id="pid_{$post['pid']}">
		{$post['message']}
	</div>


Are these not true?
Pages: 1 2