After speaking with the StudioPress development team:
If you’re using Genesis Simple Sidebars with another sidebar plugin such as Woo Sidebars, and would like Woo Sidebars to take priority over Simple Sidebars, you can:
– Update to Simple Sidebars 2.1.0.
– Add the following to your active theme’s functions.php:
add_action( 'after_setup_theme', 'custom_change_simple_sidebar_priority' );
function custom_change_simple_sidebar_priority() {
if ( ! class_exists( 'Genesis_Simple_Sidebars' ) ) {
return;
}
remove_filter( 'sidebars_widgets', array( Genesis_Simple_Sidebars()->core, 'sidebars_widgets_filter' ) );
add_filter( 'sidebars_widgets', array( Genesis_Simple_Sidebars()->core, 'sidebars_widgets_filter' ), 11 );
}
A Woo Sidebar set to override a Simple Sidebar will then continue to do so.
-
This reply was modified 7 years, 11 months ago by
Nick C.
-
This reply was modified 7 years, 11 months ago by
Nick C.