Home › Forums › WoodMart support forum › Size chat
Size chat
- This topic has 7 replies, 3 voices, and was last updated 3 years, 5 months ago by Elise Noromit.
-
AuthorPosts
-
June 25, 2021 at 10:23 am #302426
triptirawatParticipantHello
Team
I want size chart tab move below the product priceJune 25, 2021 at 10:56 am #302441
Elise NoromitMemberHello,
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
June 25, 2021 at 11:50 am #302475
triptirawatParticipantok 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 belowAttachments:
You must be logged in to view attached files.June 26, 2021 at 7:47 am #302615
Elise NoromitMemberHello,
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
June 26, 2021 at 7:59 am #302624
triptirawatParticipantI 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 cartAttachments:
You must be logged in to view attached files.June 28, 2021 at 6:22 am #302961
Eric WatsonParticipantHello,
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 );
June 28, 2021 at 6:49 am #302976
triptirawatParticipantQuantity 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.June 28, 2021 at 3:15 pm #303159
Elise NoromitMemberHello,
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
-
AuthorPosts
- You must be logged in to create new topics. Login / Register