@baris said in how to get only current day/week posts of a specific category?:
/api/top?cid=5&term=daily
perfect! thanks!
I would like to disable or remove component shown in category if user is not logged in (category/post/guest), its content is "log in to post". Basically it's just a button, but I can't seem to find a way to hide it.
You can add this to your custom CSS:
a[component="category/post/guest"] {
display: none;
}
Thank you, this solved my problem. Usually the easiest solution is the best one.