Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Blog Post Sidebar is always On

Home / Forums / Pinnacle Theme / Blog Post Sidebar is always On

This topic is: Not Resolved
[Not Resolved]
Posted in: Pinnacle Theme
October 21, 2015 at 1:52 am

It seems like Blog Post Sidebar Default option in the Theme Options panel doesn’t work for me. It is set to “No; Do Not Show”. But all my single blog posts are with empty sidebar. (Display sidebar option for each of them is Default)

Another strange behaviour is that one empty sidebar (named sidebar1) exists and I didn’t create it…

P.S. I fixed the first issue by myself with child theme and the following code in functions.php

add_filter('kadence_display_sidebar', 'single_post_sidebar');
function single_post_sidebar($sidebar) { if (is_single()) { return false; } return $sidebar; }

but anyway maybe this is а bug and should be fixed.

  • The forum ‘Pinnacle Theme’ is closed to new topics and replies.