Hey so in each page you can turn it on in the page itself using that pages options. there isn’t a setting to make a default but you can use a function in a child theme if you would like to override. Are you interested in that function for your pages?
Kadence Themes
Hi, yes thanks. that would be of interest.
Ok here is the function:
add_filter('kadence_display_sidebar', 'kt_sidebar_every_page');
function kt_sidebar_every_page($sidebar) {
if(is_page()){
return true;
}
return $sidebar;
}
Kadence Themes
tx. great. can you just clarify where to add this code?
Hey,
You can add this in your child theme. use the function.php file.
Kadence Themes
ok. tx. I have no idea. this sounds very technical to me.
Hey, you can find out about child themes here- http://www.kadencethemes.com/child-themes/
Let me know if you need further help.
Hannah