Guest css filter
-
@baris I did not understand
I added the code you referred to the main JS page of my forum
What do I need to write in practice for the next CSS code to apply but only to guests?//Removing the Like button [component="post/upvote"], { display: none !important; }
Purpose: To remove the Like button
-
@שלמה-shlomo
You need to add this code
if (req.loggedIn) { parts.push('user-loggedin'); } else { parts.push('user-guest'); }
in this file
src/middleware/helpers.js
in thebuildBodyClass
function.After that your css can use
.user-guest [component="post/upvote"], { display: none !important; }
Copyright © 2024 NodeBB | Contributors