-
-
Save thecodepoetry/c055daf793ad12359686 to your computer and use it in GitHub Desktop.
Product sidebar global edit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'get_header', 'dt_product_sidebar', 10 ); | |
function dt_product_sidebar() { | |
$config = Presscore_Config::get_instance(); | |
if(is_product() ){ | |
$config->set( 'sidebar_position', 'right' ); | |
$config->set( 'footer_widgetarea_id', 'sidebar_1' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment