Site logo

Archived topic

Sidebar left woocommerce

3 replies · Started by _blank on December 16, 2020

Viewing posts 1–4 of 4

Hi

I'd like to be able to use the left sidebar on all woocommerce pages only and found you document
WooCommerce function
https://docs.generatepress.com/article/sidebar-layout/#woocommerce

It's had some strange results, please see URL.

I used this
add_filter( 'generate_sidebar_layout', function( $layout ) {
// If we are on a woocommerce page, set the sidebar
if ( function_exists( 'is_woocommerce' ) && is_woocommerce() ) {
return 'both-left';
}

// Or else, set the regular layout
return $layout;
} );

Did i do something wrong?

Many Thanks
Scott

Hi Leo,

That worked, i've turned off the snippet.
Thanks
Scott

No problem :)

This archived topic is closed to new replies.