-
AuthorSearch Results
-
In reply to: Shop filter not moving above products
Hello soporte_web,
Thanks for reaching to us.
You are using a Custom Single Product layout, which is built with WoodMart WooCommerce builder. Navigate to Layouts > Layout to edit Archive product layouts and you can place widgets where you want.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Kind Regards
In reply to: Wo kann ich Infos zum Produkt einstellen
Hello,
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. So, you can use that to create your own custom layouts for a single product page and use the “product additional information table” widget.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Best Regards
Hello robyparini,
Thanks for details.
I kindly recommend you to build Custom Product layouts, which is built with WoodMart WooCommerce builder, then you can place your specific contents that suits your requirements. https://ibb.co/MhtJbZ5
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: Shop page
Hello,
Sorry for the inconvenience but as you know the default layout of the Shop or Category page comes from WooCommerce end and isn’t directly editable with the Page Builder plugins because WooCommerce doesn’t allow it to do so.
But under the WoodMart Theme, using the Theme’s Layout Builder you can create Custom Layouts for WooCommerce pages like Shop, Category, Single Product page, Cart and Checkouts. So, you can use that to create your own custom layouts for these pages.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Best Regards
In reply to: Edit 2 buttons ‘description’ and ‘additional info’
Hello,
Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
.single-product .wd-nav-tabs>li>a { background-color: #d5dbe2; /* Background color for buttons */ border: 2px solid #ccc; /* Border for buttons */ border-radius: 5px; /* Rounded corners */ color: #333; /* Text color */ } .single-product.single-product .wd-nav-tabs>li>a:hover { background-color: #007bff; /* Change background on hover */ color: #fff; /* Change text color on hover */ border-color: #007bff; /* Change border color on hover */ }
If you want to show the tabs instead of accordion in mobile, 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. So, you can use that to create your own custom layouts for a single product page and use the “product tabs” widget.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Best Regards
In reply to: Two quick questions.
Hello,
01. Maybe you are using a Custom layout, which is built with WoodMart WooCommerce builder. Navigate to Layouts > edit single product layout and check the related section.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
02. Make sure Reviews are enabled in the Woocommerce > Settings > Product.
And enable the Reviews for the product: https://take.ms/YC7mj and check the isse.Best Regards
In reply to: Page title dont work in woocommerce
Hello Rainhard,
Thanks for details.
You are using a Custom Single Product layout, which is built with WoodMart WooCommerce builder. Navigate to Layouts > Layout to edit Archive product layouts and you can use the
Page Title
element to show that section.Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Kind Regards
In reply to: Woodmart Single Product (WooCommerce)
Hello garden.semina,
Thanks for reaching to us.
I kindly recommend you to build Custom Product layouts, which is built with WoodMart WooCommerce builder, then you can place your specific contents that suits your requirements.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: Attribute groups on WoodMart
Hello,
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. So, you can use that to create your own custom layouts for a single product page and use the “product additional information table” widget.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Best Regards
In reply to: Lower category description is not displayed
Hello,
Maybe you are using the custom layout of the theme. Navigate to Layouts > Edit Product Archive Layout and add extra description widget in the layout.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Best Regards
Hello aOf,
Thanks for reaching to us and appreciate your patience.
I kindly recommend you to build Custom Product layouts, which is built with WoodMart WooCommerce builder, then you can place your specific contents that suits your requirements.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
Hello,
You are using a Custom Product layout, which is built with WoodMart WooCommerce builder. Navigate to Layouts > Edit Archive product layouts and and configure it you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Best Regards
Hello,
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
In reply to: Homepage problem
Hello,
01. 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 checkout page.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
02. You can change add / remove social networks in Theme Settings > Social profiles https://prnt.sc/Zjo8GUN8E5NM
Best Regards
In reply to: modify the default Checkout page
Hi huaileiwang,
Thanks for reaching to us.
I kindly recommend you to build Custom Product layouts, which is built with WoodMart WooCommerce builder, then you can place your specific contents that suits your requirements.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: I have some questions
Hello,
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
In reply to: Problems with PayPal Pay Later message
Hi EntreDosCom,
Thanks for reaching to us.
1. Message
Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
.single-product .ppcp-messages{ margin-top: 20px; }
2. Wishlist icon
You are using a Custom Single Product layout, which is built with WoodMart WooCommerce builder. In order to align center it, navigate to Layouts > Layout to edit Archive product layouts > select
Container
widget > Advanced tab and align center it. https://ibb.co/DL6NqDxFurther, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: Buy Now move
Hi rahmat.wpdev,
Thanks for reaching to us.
I kindly recommend you to build Custom Product layouts, which is built with WoodMart WooCommerce builder, then you can place your specific contents that suits your requirements.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: Single product page layout empty
Hello,
In some demos, we do not use the custom layouts which is why they were not imported on the site with the demo content. You need to create the layouts manually:
Please follow this guide:
https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/Best Regards
In reply to: additional product informations
Hi tmo.trnka,
Thanks for reaching to us and appreciate your patience.
You are using a Custom Single Product layout, which is built with WoodMart WooCommerce builder. Navigate to Layouts > Layout to edit Archive product layouts and you can edit its layout.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: Countdown timer not working
Hi senka.rankovic,
Thanks for your patience.
You are using a Custom Single Product layout, which is built with WoodMart WooCommerce builder. Navigate to Layouts > Layout to edit Archive product layouts and you can use the
Countdown timer
widget to show it https://ibb.co/T1N9QKwFurther, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Kind Regards
In reply to: Translate wth WPML
Hi mardarivictor,
Thanks for your patience.
You are using a Custom Single Product layout, which is built with WoodMart WooCommerce builder. Navigate to Layouts > Layout to edit Archive product layouts and you can use the
Category extra description
element to show the description. https://ibb.co/PxFZ2sKFurther, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Kind Regards
In reply to: menu in product catalog widget
————“Try to create a custom sidebar and add the widgets.
https://xtemos.com/docs-topic/sidebars/Then, try to use the Theme’s Layout Builder. You can create Custom Layouts for WooCommerce pages like Shop, Category. So, you can use that to create your own custom layouts for specific categories and choose the sidebar.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/”————
Hello,
Could you please advise on an alternative way to implement this? I will have quite a few categories where the sidebar will have a menu with two options: “collections” and “products.” Creating a separate layout for each category would be very challenging, and I suspect it might impact optimization.
Thanks
Best RegardsIn reply to: category image
Hello cavetown.nl,
Thanks for reaching to us and appreciate your patience.
You are using a Custom Single Product layout, which is built with WoodMart WooCommerce builder. Navigate to Layouts > Layout to edit Archive product layouts and you can use the
Page Title
widget to show that section.Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Kind Regards
In reply to: Disable Page Title + filters
Hi Digital,
Thanks for details.
1. You are using a Custom Single Product layout, which is built with WoodMart WooCommerce builder. Navigate to Layouts > Layout to edit Archive product layouts and you can remove the
Page Title
widget https://ibb.co/1Z84gf7Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
2. How to add mail folder icon In the top header, like telephone icon.
Navigate to WoodMart > Header builder > edit default header (highlighted star icon) or you can go through admin bar directly https://prnt.sc/Ct9ehRDvvDV9.
Hover on
Information box
element, click on Pencil icon to edit and you can upload image https://ibb.co/LgV9L74Please refer to this article https://xtemos.com/docs-topic/adding-menu-to-the-site/
3. Please navigate to Theme Settings > Performance > Font & Icons and set the “swap” value for the
“font-display” for text fonts
field: https://take.ms/vwNDA4. This is how filters work, when you select one attributes, it can only displays products that have other attributes.
Regards,
In reply to: menu in product catalog widget
Hello,
Try to create a custom sidebar and add the widgets.
https://xtemos.com/docs-topic/sidebars/Then, try to use the Theme’s Layout Builder. You can create Custom Layouts for WooCommerce pages like Shop, Category. So, you can use that to create your own custom layouts for specific categories and choose the sidebar.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Best Regards
In reply to: Single Product page Problems
Hi Dr. Kappl,
Thanks for details.
You are using Elementor Pro to build custom single product layout, I kindly recommend you to build Custom Product layouts, which is built with WoodMart WooCommerce builder, then you can place your specific contents that suits your requirements.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: Editing a search results page
Hi kelly-2397,
Thanks for reaching to us.
1. I kindly recommend you to build Custom Product layouts, which is built with WoodMart WooCommerce builder, then use
Shop results
condition and you can change the settings. https://ibb.co/YNL4HrtFurther, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
2. Change text
+ In order to change / translate words. Please make sure you synced the strings first before changing / translating WooCommerce, WoodMart Core plugins and WoodMart theme. You can refer to article
https://xtemos.com/docs-topic/theme-translation/
https://xtemos.com/docs-topic/how-to-make-woodmart-multilingual-with-wpml/+ You are also need to select the language for the backend and theme settings for admin from the admin user profile, please edit the user’s profile and then select the language for that user it will show the same on the backend.
+ Some strings related to Wishlist / Compare / Login & Register page, you can change in Theme Settings > Shop or Theme Settings > My account https://prnt.sc/W8Tt95stG3YC
Regards,
Hello alammdmanzar007,
Thanks for reaching to us.
If so, I kindly recommend you to build Custom Product layouts, which is built with WoodMart WooCommerce builder, then you can place your specific contents that suits your requirements.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Best Regards,
In reply to: Main Widget Area Filters
Hi Rožinė Pantera,
Thanks for details.
You are using Elementor Pro to build custom shop layout, so that’s why you can’t see the filters apply to categories page.
I kindly recommend you to build Custom Product layouts, which is built with WoodMart WooCommerce builder, then and create new WooCommerce layouts and place your specific contents that suits your requirements.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
-
AuthorSearch Results