Home Forums WoodMart support forum Size chat

Size chat

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #302426

    triptirawat
    Participant

    Hello
    Team
    I want size chart tab move below the product price

    #302441

    Hello,

    Please provide the page URL and screen what you want to chagne. We will check if it is possible and give you custom CSS.

    Best Regards

    #302475

    triptirawat
    Participant

    ok i send
    and one more issue When I select the attribute size, the size is written above, so I do not want this
    screen shot attached below

    Attachments:
    You must be logged in to view attached files.
    #302615

    Hello,

    Please try this snippet

    add_action( 'wp', function() {
    	remove_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 38 );
    	add_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 10 );
    } , 100);

    add this code to the functions.php of the child theme.

    Your issue with the size is not clear enough, please clarify.

    You have a variable product, variable product has the attributes. They can be as swatches or as a drop-down.

    If you do not want the swatches, you need to disable them in attribute: https://xtemos.com/docs/woodmart/variable-products-swatches/

    Best Regards

    #302624

    triptirawat
    Participant

    I want size chart next to Quantity box
    and above quantity box i want text to be added that is ( quantity )
    and the size word is not getting align straight
    and my site some of the word are in golden color if you see Add to cart button some of the words are coming in golden colors that is DD T RT of Add to cart

    Attachments:
    You must be logged in to view attached files.
    #302961

    Eric Watson
    Participant

    Hello,

    Try to add the following PHP code snippet to the child theme functions.php file to do this

    add_action(
    	'wp',
    	function() {
    		remove_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 38 );
    		add_action( 'woocommerce_after_add_to_cart_quantity', 'woodmart_sguide_display', 10 );
    		add_action(
    			'woocommerce_before_add_to_cart_quantity',
    			function() {
    				?>
    					<span class="wd-quantity-label">Quantity</span>
    				<?php
    			}
    		);
    	},
    	100
    );
    #302976

    triptirawat
    Participant

    Quantity is right on place but size guide is not there where we want

    sharing the screen shot where we want the size chart

    Attachments:
    You must be logged in to view attached files.
    #303159

    Hello,

    Please replace the code with this one:

    add_action(
    	'wp',
    	function() {
    		remove_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 38 );
    		add_action( 'woocommerce_before_add_to_cart_quantity', 'woodmart_sguide_display', 9 );
    		add_action(
    			'woocommerce_before_add_to_cart_quantity',
    			function() {
    				?>
    				<span class="wd-quantity-label">Quantity</span>
    				<?php
    			}
    		);
    	},
    	100
    );

    Best Regards

Viewing 8 posts - 1 through 8 (of 8 total)