Home › Forums › WoodMart support forum › I have some questions
I have some questions
- This topic has 10 replies, 2 voices, and was last updated 4 months ago by
Aizaz Imtiaz Awan.
-
AuthorPosts
-
November 13, 2024 at 11:59 pm #612006
malstoresaParticipantHello, I have some questions, please.
1- When I add a tab in the product description from the product page settings, it comes last, and the tab for shipping and delivery comes before it. Can I control their order so that the fixed tab, such as shipping, is ordered last?
2- I also have a question regarding the blog, where the item and other details appear to me. Can I hide them?
3- Also, I deleted the checkout page and added a WooCommerce checkout page via shortcode. I want to restore the Woodmart checkout page. Is there a special code or a way to restore it?
November 14, 2024 at 11:10 am #612099
Aizaz Imtiaz AwanKeymasterHello,
01. The code below will help you to reorder the tabs. Please try to add the code below in the functions.php file in your child theme.
/** * Reorder product data tabs */ add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 ); function woo_reorder_tabs( $tabs ) { $tabs['reviews']['priority'] = 33; // Reviews first $tabs['description']['priority'] = 4; // Description second $tabs['additional_information']['priority'] = 5; // Additional information third // Additional Tabs are from Theme Settings $tabs['wd_additional_tab']['priority'] = 1; $tabs['wd_additional_tab_2']['priority'] = 2; return $tabs; }
Please follow this guide:
https://woocommerce.com/document/editing-product-data-tabs/02. To hide details on a specific post, navigate to Posts > All Posts, then select Edit on the post you want to modify. Navigate to Theme Settings > Blog > choose the blog option.
03. Try to use the Theme’s Layout Builder you can create Custom Layouts for WooCommerce pages like Shop, Category, Single Product page, Cart, and Checkouts. You can use that to create your own custom layouts for a single product page.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Best Regards
January 7, 2025 at 7:10 pm #628096
malstoresaParticipantthanks.
I have a problem with the box for attaching the customer’s discount code, as it appears at the top of the checkout page and is not clear. I want to change its location so that it is with the shipping options. Is there a way?
I also have a problem in the store where products appear with the Add to Cart icon and Learn More does not appear. The customer does not understand that he can access the product. What is the method for me to change the icon?
January 7, 2025 at 11:12 pm #628113
malstoresaParticipantmove coupon field checkout **
January 8, 2025 at 10:54 am #628179
Aizaz Imtiaz AwanKeymasterHello,
Can you please share the page URL so I can check and give you a possible solution?
Best Regards
January 8, 2025 at 6:52 pm #628388
malstoresaParticipant1- We give customers a discount coupon but they are having difficulty in entering it as its location is not the usual location and also not clear. I want to control it and transfer it with the order summary.
2- On the store page, the products appear, and under them is the Add to Cart button. I want to change it to the Learn More button, and it takes him to the product page.
Attachments:
You must be logged in to view attached files.January 9, 2025 at 9:54 am #628465
Aizaz Imtiaz AwanKeymasterHello,
01. Can you please share the page URL so I can check and give you a possible solution?
02. You can use the Loco Translate plugin to modify the text of the button. Here’s a helpful guide on how to translate or change text in the Woodmart theme using Loco Translate:
https://xtemos.com/docs-topic/translate-woodmart-theme-with-loco-translate/Best Regards
January 10, 2025 at 12:51 am #628664
malstoresaParticipantPlease
This is not what I mean and I think what I am asking for is clear and today my support subscription expires.
1- I want to change the discount coupon entry area field from the top of the page to the bottom with payment.
https://mal.com.sa/checkout/
2- On the store page, the products appear with an add to cart button and I want to change it to a button that takes the customer to the product page and I do not mean to translate it.January 10, 2025 at 3:47 pm #628816
Aizaz Imtiaz AwanKeymasterHello,
01. Unfortunately, it is not possible. HTML structure does not allow solving it by custom CSS. Such modification requires complicated Woocommerce code customization which is not covered by our support.
For more details Please follow this guide:
https://www.businessbloomer.com/woocommerce-move-remove-coupon-form-cart-checkout/02. Add the code below to the functions.php file in your child theme:
add_filter('woocommerce_loop_add_to_cart_link', 'custom_redirect_to_product_page', 10, 2); function custom_redirect_to_product_page($button, $product) { $product_url = get_permalink($product->get_id()); $button_text = __('Add to Cart', 'your-text-domain'); return '<a href="' . esc_url($product_url) . '" class="button">' . esc_html($button_text) . '</a>'; }
Best Regards
January 10, 2025 at 8:07 pm #628877
malstoresaParticipantThank you
I solved the Add to Cart button.
If possible, please provide me with the method or a link explaining it from WooCommerce for the problem of the discount coupon box. I will be grateful to you.
January 11, 2025 at 5:08 pm #628971
Aizaz Imtiaz AwanKeymasterHello,
Sorry but there is no option in Theme Settings available for that.
It requires customizations and this is beyond our limitations and support policy.
Regards.
Xtemos Studios -
AuthorPosts
- You must be logged in to create new topics. Login / Register