How for the Shop pages and product page -can we get the Sidebar on left
Hey whdsolutions,
Thank you for the inquiry.
You can add this code to the functions.php file to override the default layout of the shop page.
add_action( 'init', 'avia_woocommerce_sidebar_pos_left_cb' );
function avia_woocommerce_sidebar_pos_left_cb() {
remove_filter( 'avf_sidebar_position', 'avia_woocommerce_sidebar_pos', 10 );
function avia_woocommerce_sidebar_pos_left( $sidebar ) {
if( is_product() ) {
$sidebar = 'sidebar_left';
}
return $sidebar;
}
add_filter( 'avf_sidebar_position', 'avia_woocommerce_sidebar_pos_left', 10, 1 );
}
Let us know the result.
Best regards,
Ismael