Site logo

Archived topic

Woocommerce Shop page sidebar

17 replies · Started by stardrive on August 13, 2015

Viewing posts 16–18 of 18

Hi Daan,

Any chance you can open a new topic for your question?

Thanks :)

Of course!

Hi,

filters like this will come in handy in this and many other situations.

function generate_construct_sidebars() {
    $layout = generate_get_layout();

    // When to show the right sidebar.
    $rs = array( 'right-sidebar', 'both-sidebars', 'both-right', 'both-left' );

    // When to show the left sidebar.
    $ls = array( 'left-sidebar', 'both-sidebars', 'both-right', 'both-left' );

    // If left sidebar, show it.
    if ( in_array( $layout, $ls ) ) {
        get_sidebar( applly_filters('generate_left_sidebar_name','left') );
    }

    // If right sidebar, show it.
    if ( in_array( $layout, $rs ) ) {
        get_sidebar( apply_filters('generate_right_sidebar_name', null));
    }
}
This archived topic is closed to new replies.