-
AuthorSearch Results
-
Hi marketerjahidul,
Thanks for reaching to us.
You are using Custom Single Product layout, so you can add custom button and place it where you want. Please refer to WooCommerce Layouts builder here https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
Hi marketerjahidul,
Thanks for reaching to us.
This is Custom Single Product layout, which can be modified via HTML Blocks and WoodMart WooCommerce builder.
1. https://prnt.sc/7Uc7fYxZnmiO
Navigate to WoodMart > Layout > Layout and edit Single Product layout or you can go through admin bar directly https://prnt.sc/h-YG-kDzJLqR.
And you can edit that part. You can refer to WooCommerce Layouts builder here https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
2. https://prnt.sc/Y2CAhOqmZI71
Regarding this part, you can change content via HTML Blocks https://prnt.sc/UfYWXZxuZYuO
Please refer to below articles to understand about HTML Blocks
https://xtemos.com/docs-topic/html-blocks-usage/
Regards,
Hi nettsted25,
Thanks for reaching to us.
You enabled Category description option in Theme Settings > Product archive > Product archive https://prnt.sc/pa2ZJ4JIQI2W
But it doesn’t showing due to you are using WoodMart WoodCommerce builder, which applied to all WooCommerce archive pages (Shop, product categories,..) https://prnt.sc/qcua8jTwE9ok
You need to edit condition to Shop page only https://prnt.sc/jHs4vW7r-QXg and check again.
You can refer to WooCommerce Layouts builder here https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: Frequently bought together” about relocation
Hi iustay98,
Thanks for reaching to us.
In case you are using Custom Single Product layout, then it’s easy to change its location. Navigate go to Layouts > Layouts, edit Single Product layout and can you place it into new position.
You can refer to WooCommerce Layouts builder here https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: YOU MAY ALSO LIKE…
Hi Impex,
Thanks for reaching to us.
There are 2 ways to do that:
1. In case you are using Custom Single Product layout, you can go to Layouts > Layouts, edit Single Product layout and use
Products (grid or carousel)
widget > Style tab and increase number of columns https://prnt.sc/P-28nkD6eWBMYou can refer to WooCommerce Layouts builder here https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
2. If you don’t use Custom Single Product layout then navigate to the Theme Settings > Single Product > Related & Upsells and scroll down to Layout area https://prnt.sc/na_Mc48pnaN6
Regards,
Hi support-1174,
Thanks for reaching to us.
There are 3 ways to do that:
1. In case you are using Custom Single Product layout, you can go to Layouts > Layouts, edit Single Product layout and turn off
Show tags
option inProduct meta
widget. https://prnt.sc/v8TPtmvB8lMeYou can refer to WooCommerce Layouts builder here https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
2. If you want to hide all the Product metas: Categories, Tags or SKUs then you need to navigate to the Dashboard > Theme Settings > Single Product > Elements > Meta > there you can find the option of Hide > just select it: https://snipboard.io/1N9m6E.jpg
3. If you don’t use Custom Single Product layout and specifically want to hide only the Tags then you need to apply the following Custom CSS on your Site and paste it to Dashboard > Theme Settings > Custom CSS > Global CSS section
.product_meta.wd-layout-inline .tagged_as { display: none; }
Regards,
In reply to: Add an extra class to wish list button
Hi raulis,
Thanks for your patience.
Add below Custom code to functions.php file in Child theme.
add_action( 'init', function () { if ( ( woodmart_get_opt( 'wishlist_logged' ) && is_user_logged_in() ) || ! woodmart_get_opt( 'wishlist_logged' ) ) { remove_action( 'woocommerce_single_product_summary', array( XTS\WC_Wishlist\Ui::get_instance(), 'add_to_wishlist_single_btn' ), 33 ); remove_action( 'woodmart_sticky_atc_actions', array( XTS\WC_Wishlist\Ui::get_instance(), 'add_to_wishlist_sticky_atc_btn' ), 20 ); add_action( 'woocommerce_single_product_summary', function () { wd_add_wishlist_btn( 'wd-action-btn wd-style-text wd-wishlist-icon' ); }, 33 ); add_action( 'woodmart_sticky_atc_actions', function () { woodmart_enqueue_js_library( 'tooltips' ); woodmart_enqueue_js_script( 'btns-tooltips' ); wd_add_wishlist_btn( 'wd-action-btn wd-style-icon wd-wishlist-icon wd-tooltip' ); }, 20 ); } if ( woodmart_get_opt( 'product_loop_wishlist' ) && ( ( woodmart_get_opt( 'wishlist_logged' ) && is_user_logged_in() ) || ! woodmart_get_opt( 'wishlist_logged' ) ) ) { remove_action( 'woodmart_product_action_buttons', array( XTS\WC_Wishlist\Ui::get_instance(), 'add_to_wishlist_loop_btn' ), 30 ); add_action( 'woodmart_product_action_buttons', function () { wd_add_wishlist_btn( 'wd-action-btn wd-style-icon wd-wishlist-icon' ); }, 30 ); } }, 300 ); function wd_add_wishlist_btn( $classes = '' ) { woodmart_enqueue_js_script( 'wishlist' ); if ( woodmart_get_opt( 'wishlist_expanded' ) && 'disable' !== woodmart_get_opt( 'wishlist_show_popup', 'disable' ) && is_user_logged_in() ) { woodmart_enqueue_js_script( 'wishlist-group' ); } $link_classes = 'add_to_wishlist'; $text = esc_html__( 'Add to wishlist', 'woodmart' ); $product_id = apply_filters( 'wpml_object_id', get_the_ID(), 'product', true, apply_filters( 'wpml_default_language', null ) ); $classes .= woodmart_get_old_classes( ' woodmart-wishlist-btn' ); ?> <div class="wd-wishlist-btn <?php echo esc_attr( $classes ); ?>"> <a class="<?php echo esc_attr( $link_classes ); ?>" href="<?php echo esc_url( woodmart_get_wishlist_page_url() ); ?>" data-key="<?php echo esc_attr( wp_create_nonce( 'woodmart-wishlist-add' ) ); ?>" data-product-id="<?php echo esc_attr( $product_id ); ?>" rel="nofollow" data-added-text="<?php esc_html_e( 'Browse Wishlist', 'woodmart' ); ?>"> <span><?php echo esc_html( $text ); ?></span> </a> </div> <?php }
But please note that it will
NOT
work on a Custom Single Produc layout build with WooCommerce builder https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/WoodMart theme also has a featurethat shows which products the user has added to the wishlist https://monosnap.com/file/ZLngk3wzSbKPfYIYhgv6QLo6AHHo3w
Regards,
In reply to: Can I customize the SHOP page alone?
Hi octexoteam,
Thanks for reaching to us and appreciate your patience.
In order to re-build Product Archive layout, you can use WooCommerce Layout builder functionality of WoodMart theme, please refer to this article for more details https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: Change SKU Position
Hi constantinos.rokkos,
Thanks for reaching to us.
HTML structure does not allow solving it by custom CSS. You can use our WooCommerce Layouts builder to build Custom Single Product layout and use
Product meta
widget and place under Product title.More about WooCommerce Layouts builder can be found in our documentation https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/.
Regards,
In reply to: horizontal filter with pictures.
Hello,
1. It is possible by using our Layouts builder, more detail is here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
2. Please send me access to the admin dashboard so I can look closer at it.
Thank you in advance.
Kind Regards
In reply to: xtemos single product widgets not displaying
Hello,
Try to use a custom layout feature of our theme and create the layout for a single product page.
Check this documentation of our layout builder of functional woocommerces pages:
https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builderIf you have any questions feel free to contact us.
Best Regards.
Hi hasanarastart,
There is no such an option in Theme Settings.
But, if you use Custom Single Product layout and
Product (grid or carousel)
widget, there is an option to re-order.Please refer to our documentation for more details https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: Can I get a category of products to sort differently
Hi Bobthestoreowner,
You can use Custom WooCommerce layouts for specific category https://prnt.sc/PKn0NOT39v2f
And then you can use
Product (grid or carousel)
widget to display products with specificData source
option https://prnt.sc/vZWlK5wHoyitYou can refer to WooCommerce Layouts builder here https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
and Product labels here https://xtemos.com/docs-topic/product-labels/
Regards,
In reply to: Add standard data in all products
Hello,
Try to create a custom layout for a single product page and add the elements in the page builder.
Check this documentation of our layout builder of functional woocommerces pages:https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder
Best Regards.
In reply to: Move position of coupon form on checkout page
Hello,
I apologize for the delay.
I suggest you use the Layout builder for the cart page, thus you can sort elements per your needs: https://take.ms/3bvi43
https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Let me know if you have any questions.
Kind Regards
In reply to: Minor issues with product page
Hello,
01. Navigate to the Theme Settings > Single Product > Images.
In addition, configure images in Appearance > Customize > Woocommerce > Product Image.
02. Try to create a custom layout for a single product page and move the elements in the page builder.
Check this documentation of our layout builder of functional woocommerces pages:
https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder03. Please use the Loco translate plugin to change size guide text:
For more information please read the theme documentation here:
https://xtemos.com/docs-topic/translate-woodmart-theme-with-loco-translate/Best Regards.
In reply to: View cart button redirects to home page
Hello,
You can use the default woocommerce pages or use the theme custom layouts. It is based on your needs.
Check this documentation of our layout builder of functional woocommerces pages:
https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builderBest Regards.
In reply to: shop
Hello,
This widget area is for the Shop / Product categories pages. WooCommerce filters and Product categories should be added here. There is also an option to make a sliding sidebar on each device: Off-canvas sidebar for mobile/Off-canvas sidebar for tablet/Off-canvas sidebar for desktop – hides the sidebar and shows nicely on button click on the shop page.
https://xtemos.com/docs-topic/widgets-and-sidebars/Actually, with some of the Demos there are certain Custom Layouts enabled for the Single Product and Archive pages which is why your made changes under the Theme Settings aren’t taking effect on that. Edit Layouts with page builder and configure the settings.
Try to create a custom layout for specific categories and configure the filters in the page builder for separate categories.
Please check this Manual:
https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builderBest Regards.
In reply to: Woodmart theme Options deon’t not work
Hi shanayaprintindia,
Thanks for sharing details.
You are using Custom Single Product layout https://prnt.sc/B93MdZ5aKzmW You should edit it directly to change the layout.
More about WooCommerce Layouts builder can be found in our documentation https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/.
Regards,
In reply to: Display products in categories
Hi anna-0978,
1. There are 2 ways to do that:
+ If you did not create Archive Product custom layout, please navigate to Appearance > Customize > WooCommerce > Product Catalog and set to Show categories https://prnt.sc/z9a09c-Lms-h
+ In case you are using WooCommerce Custom Layout, you can go to Layouts > Layouts, edit Archive Product layout and use Product categories widget to show categories.
You can refer to WooCommerce Layouts builder here https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
2,3. Please navigate to Theme Settings > Styles and colors > Pages background. You can change the background of Shop pages, Blog pages, Portflio pages.
In case you want to do it for specific post / page only, you can use Theme Presets, please refer to our documentation https://xtemos.com/docs-topic/theme-settings-presets/
Regards,
In reply to: 404 when i create new product
Hello,
For the product page, you use Layouts (https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/), so you need to define an appropriate element to see the upsell, crossed, etc., products.
Therefore the width of the product page, you can change via the settings of the section: https://prnt.sc/kFY261_7YzKY
Kind Regards
In reply to: No changes are made on the product page
Hi tecnotyresorihuela,
Thanks for reaching to us.
You are using Custom Single Product layout https://prnt.sc/Q1GtMRXqm0Ff You should edit it directly to change the layout.
More about WooCommerce Layouts builder can be found in our documentation https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/.
Regards,
In reply to: slider on shop page
Hi Kay,
Thanks for reaching to us.
You can use our WooCommerce Layouts builder, in which you can create your own layout for Shop Archive page only. https://prnt.sc/4ZB6ZtqjnVut
Then, use Slider widget to display slider.
More about WooCommerce Layouts builder can be found in our documentation https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/.
Regards,
In reply to: Make a Category for Tags
Hello,
Try to create a custom layout for a specific tag.
Here is the guide to the Theme’s Layout Builder, please check that:
https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/Best Regards.
In reply to: How to show brand box?
Hi bronis.tomas,
Thanks for reaching to us.
There are 2 ways to do that:
+ If you did not create Single product custom layout, please navigate to Theme Settings > Shop > Brands and enable “Show brand on the single product page” option https://prnt.sc/rF-jox2Ixg74
You can refer to WooCommerce Layouts builder here https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
+ In case you are using Custom Layout, you can go to Layouts > Layouts, edit Single product layout and add Product brands widget https://prnt.sc/FBLTxJYhEhQi
Regards,
In reply to: how can i edit the product page
Hi a.qandil,
Thanks for reaching to us and appreciate your patience.
1. You need to select existing attributes instead and checked visible on product https://prnt.sc/NHt-gZPFORmx
Navigate to Products -> Attributes -> chose the attribute -> Configure Items -> Edit -> Enable image swatch
Please refer to article: https://xtemos.com/docs-topic/variable-products-and-swatches/
2. There are 2 ways to do that:
+ If you did not create Single product custom layout, please navigate to Theme Settings > Shop > Compare and disable that option https://prnt.sc/lha8kf4MUFYe You can do with other elements.
You can refer to WooCommerce Layouts builder here https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
+ In case you are using Custom Layout, you can go to Layouts > Layouts, edit Single product layout and add / remove components you want. For e.g: You want to remove Compare feature, just delete it https://prnt.sc/X_KKuc6hqtTD
3. Sorry but there is no such option in Theme Settings available for that. I will consider it as Feature request.
4. How does it look like you want? About the categories, you can take a look #2 answer.
Let me know if you need any helps.
Regards,
In reply to: HOW TO REMOVE THESE ITEMS
Hi ahmedkalu,
Thanks for reaching to us.
In order to remove Product Categories carousel, change width layout and remove footer content, please Navigate to Layouts > Layouts and edit Product Archive template. https://prnt.sc/fDmz9EADShru
Please refer to this article for more details https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: single product layout
Hi fcoerezza,
Thanks for reaching to us.
In order to re-build Single product layout, you can use WooCommerce Layout builder functionality of WoodMart theme, please refer to this article for more details https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
In reply to: Product archive filters do not work
Hello,
I have found that you have created the shop page with the ELementor builder. Our theme settings and another theme widget will not work or apply the changes on the Elementor builder-created shop page.
If you want to use the customize shop page then please use the Custom Layout option of the theme to create the custom layout by using the Elementor and theme widgets:
https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/Best Regards.
Hi dh.pasan,
Thanks for reaching to us.
In order to re-arrange these positions, you may need to use Custom Layout, please refer to this article https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
-
AuthorSearch Results