Hi,
Do you mean product categories or blog categories? Can you post a link?
Thanks!
Hannah
In a child theme you can use a function to remove the sidebar.
Here is an example, you would just replace “custom-page-template.php” with the file name for your template.
add_filter('kadence_display_sidebar', 'kad_sidebar_on_custom_page');
function kad_sidebar_on_custom_page($sidebar) {
if (is_page_tempalte('custom-page-template.php')) {
return false;
}
return $sidebar;
}
Kadence Themes
@hannah
It’s blog catagories.
http://aphilatelucoutlet.com/cat/
@kadence theme thanks
Your link seems to be incorrect? Can you check it and send again?
Thanks,
Hannah
Hi Hannah
Sorry for the late reply.
The link should be fine now.
http://aphilatelicoutlet.com/cat/
Did you try the code that kadence suggested?
Hannah