Your account expired support, please renew to get your support.

Support Forum Forums Woncep – Fashion Style WooCommerce Theme How to add size charts to Woncep Theme

Tagged: ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2290
    adriang1228
    Support Expired

    Hi we have recently installed the woncep theme and cannot seem to find the custom post type or woo settings relating to sizecharts. Neither is there any information relating to this in the documentation supplied.

    Kindly advise on the correct process to add size charts that are selectable in the woocommerce product settings dropdown for size charts. https://pasteboard.co/KeTiWal.png

    #2291

    Hi you,

    Please go to Templates -> Add new -> Select Section -> Add name template= “SizeChart X” with X = your name: https://prnt.sc/1lf9002

    -> Add content for SizeChart template.

    -> Go to Edit product -> Size Chart -> Select Sizechart template: https://prnt.sc/1lfamt6

    #4111
    adriang1228
    Support Expired
    This reply has been marked as private.
    #4123

    Please copy this code and paste to the file functions.php( child-theme):

    if(class_exists('WooCommerce')) {
        add_filter( 'woocommerce_add_to_cart_fragments',  'elementor_pro_cart_count_fragments' , 1, 9999 );
    
        function elementor_pro_cart_count_fragments($fragments) {
    
            ob_start();
            woocommerce_mini_cart();
            $mini_cart = ob_get_clean();
            $fragments['div.widget_shopping_cart'] = '<div class="widget woocommerce widget_shopping_cart"><div class="widget_shopping_cart_content">' . $mini_cart . '</div></div>';
    
            return $fragments;
        }
    }
Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.