jillmugge
4/22/2014 - 2:37 PM

force a specific Builder layout for main shop page and individual product pages

force a specific Builder layout for main shop page and individual product pages

function custom_filter_shop_layout( $layout_id ) {
    if ( is_post_type_archive('product') || is_singular( 'product' ))
            return '5229da61e6097';

    return $layout_id;
}
add_filter( 'builder_filter_current_layout', 'custom_filter_shop_layout' );