Archived topic
How to remove category list post
10 replies · Started by jose luis on October 4, 2021
Hello there!!
I would like to know how I can remove the list of posts associated with the category page?
thanks
Hi Jose,
Not sure I understand your question, can you explain some more and link us to the page in question?
Let me know :)
Hi! Thanks for your reply.
This results https://hublocker.net/amazon-locker-madrid/ I only wnat to show mi description.
Hi there,
This results https://hublocker.net/amazon-locker-madrid/ I only wnat to show mi description.
Not sure I understand this one as well.
Did you mean you only want to display the category description (if it exists) like this? https://share.getcloudapp.com/o0uPrpvb
Is it only for a specific category? is it for ALL?
Are you sure this is what you want to do? doing this literally makes category archive pages useless.
Let us know.
Hi Elvin!!
Thanks for your reply.
Did you mean you only want to display the category description (if it exists) like this? https://share.getcloudapp.com/o0uPrpvb
yes that's how i want it!
Is it only for a specific category? is it for ALL?
Yes for all !
Are you sure this is what you want to do? doing this literally makes category archive pages useless.
yes, I'm going to use shortcodes with a special layout
Hi there,
you can try adding this PHP Snippet:
add_filter( 'generate_do_template_part', function( $do ) {
if ( is_category() ) {
return false;
}
return $do;
} );
Hi!
It works perfectly. Thank you very much, wonderful support
Awesome - glad to be of help :)
Can you please explain, where and how can i add this snippet to my website?
Hi Andrei,
You can use one of the method introduced in this article to add PHP code: https://docs.generatepress.com/article/adding-php/
So, I can simply paste this PHP code at the end of my functions.php, right? Cause I can't install a plugin, it shows an error when i try to activate it.