Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1486736

    How for the Shop pages and product page -can we get the Sidebar on left

    #1486781

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.