Problem:
I want to customize the layout of the category title and category description on an archive page, but Toolset doesn’t provide options for this. I’m using Toolset with GeneratePress and GenerateBlocks.
Solution:
The category title and description are likely controlled by the GeneratePress theme rather than Toolset. You can try adding the following code to your theme’s functions.php file to hide them:
add_filter( 'get_the_archive_title', '__return_false' ); add_filter( 'get_the_archive_description', '__return_false' );
If this doesn't work or you need further customization, contact GeneratePress support for guidance on modifying the title and description layout.
Relevant Documentation:
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
This topic contains 1 reply, has 1 voice.
Last updated by 1 month, 3 weeks ago.
Assisted by: Christopher Amirian.