Would it be possible to keep the restricted content in lists but with a blurred or an alternative image instead of the original? On my site I restrict explicit images from anonymous visitors but I want to seduce these visitors to login by showing them a blurred image with a text “login to view”. Are currently the posts hidden from lists by a hide command? Can tell me what I could change to make it work the way I want?
@petergiesbers unfortunatelly the plugin can not blur content in a list, it can be either shown or not. The option you telling – may also bring paging problems.
Hi Taras, instead of completely hiding products from the list I would like to show something like the above so that visitors can see that there are more products available and triggers them to create an account. Is this something that can be done?
CSS Blurred is what you should look for, in that case, instead of hidding elements from list – plugin will add special class name to it, you can find the class name using browser debugger, and then in your website theme add this classname to styling with any kind of blurring you like
I could not find a class to only blur the image but I managed to blur the whole item using the code below, which works for me.
.arc-post-css-blurred { filter: blur(0.5rem); }
I only noticed that when someone clicks on the blurred “quick view” button, which appears on hover, it will still show the original image of the restricted item.