12890 comments found.
You have a great built-in chip swatch variations of the product in your theme. We sell yarn, we have many variations of the product, is it possible to get a snippet that will allow you to show first the variations of the product that are in stock, and which are not at the bottom of the list? In other words, sort product variations by availability?
Hi,
Sorry, but there is no such option in our theme and WooCommerce by default. It may require additional code customization or extra plugin but we don’t have an instruction for this. It is out of our theme support scope.
Regards
Standardized response. I see. Thank you for your responsiveness.
Can u help to develov this feature for a price? And u can include it in futher updates.
Sorry, but we are not available for additional customization work at the moment.
Is there an option in the product description a download option? Example: Product is chair, in the description an option to download a instruction guide how to build (pdf)
Hi,
Sorry, but there is no such option in our theme and WooCommerce by default. It may require additional code customization or extra plugin but we don’t have an instruction for this. It is out of our theme support scope.
Regards
Hello,
Is there a way on the shopping cart that customers can add personalization options such as customer initials or gift messages …is there someway for the customer to communicate these needs via the product page/ shopping cart?
Hi,
Sorry, but there is no such option in our theme and WooCommerce by default. It may require additional code customization or extra plugin but we don’t have an instruction for this. It is out of our theme support scope.
Regards
I am looking for a woocommerce store theme with a function to add more description text under the product list of the product archive page.
Sometimes, I have 1000 words to show on the product archive page, if I put all the 1000 words on the top, it may affect customers to find the products. So, sometimes, I have to change the code and make the category description at the bottom of the page.
Could you develop a function on your theme to add another description area on the product category description and product tag description? You can name it the second description… It is for SEO optimization.
Here is an article for your reference: https://www.businessbloomer.com/woocommerce-add-a-second-content-box-product-category-pages/
Hello,
Thank you for contacting us.
Yes, we can help you implement this function in the theme on your website. Just contact us after the purchase via the support forum and mention this comment.
Kind Regards
Hello,
I am a web developer working in an agency and I really love working with Woodmart theme. But I noticed that most of the features are Woocom merce oriented. Not perfect for an agency or a services company.
Have you planed to develop a great theme like this but more suitable for non-ecommerce website like corporates ?
Thanks for you work !
Hello,
Thank you very much for your comment.
WoodMart can be successfully used for corporate websites as well. We have a few demo versions for this and probably will add more in the future. As for the separate theme, we already have other themes made for corporate that are currently selling on our own website. We will release some of them on ThemeForest soon. Check them here https://space.xtemos.com/themes/corporate And we have also plans for a multipurpose corporate theme like WoodMart but it might take a few years of development so we can’t guarantee that it will be available very soon.
Kind Regards
When is the next update? You said that the update will come at the end of this month, but it already) I want to do a clean install of the site
Hello,
The update is almost ready
We have already shared our 6.2-beta with our customers and hope to release it next week. If you want to get the beta version, please, contact us directly and we will send you. Or you can download an official release next week.
Kind Regards
send me pls beta link on my mail ya.predko @gmail.com
Thanks, I already found on the support forum
thankyou page not work
Hello,
Try to check how it works on the default theme. If the page works the same, provide your site admin access via the contact form on our profile page.
Kind Regards
need theme removed from domain
Hello,
You can create an account on our website and manage your previously activated domains in your account https://xtemos.com/myaccount/
Kind Regards
Hello. If you make the store page the main page, and set your own header for the store page, then this header will be applied to all categories of the store. Can this be fixed?
Hi,
Please, create a topic on our support forum and provide us all the necessary details about the request with some screenshots and including your admin access so we can help you https://xtemos.com/forums/forum/woodmart-premium-template/ If your support is already expired then you need to extend it on ThemeForest first.
Regards
Hola! ¿Hay alguna manera de poder ver el precio real cuando voy aumentando la cantidad de un producto? Y no tener que ver el precio real en el carrito.
Gracias.
Hello,
1. Unfortunately, we cannot change the “Quantity of product” option because it comes from the “WooCommerce” plugin.
2. In order to hide subcategories for the shop filter, go to Appearance -> Widgets -> in the “Shop filters” widget open the “Product Categories” widget, and there enable the “Show hierarchy” option.
https://monosnap.com/file/dwy5y5UgLNI4mEhFb7Q8VUn0Vvhd1pTo hide subcategories for the “Select Categories” option in the header, try to add this code to the functions.php file in your child theme.
if( ! function_exists( 'woodmart_show_categories_dropdown' ) ) {
function woodmart_show_categories_dropdown() {
$args = array(
'hide_empty' => 1,
'parent' => 0
);
$terms = get_terms('product_cat', apply_filters( 'woodmart_header_search_categories_dropdown_args', $args ) );
if( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
$dropdown_classes = '';
if ( 'light' === whb_get_dropdowns_color() ) {
$dropdown_classes .= ' color-scheme-light';
}
$dropdown_classes .= woodmart_get_old_classes( ' list-wrapper' );
woodmart_enqueue_js_script( 'simple-dropdown' );
?>
<div class="wd-search-cat wd-scroll<?php echo woodmart_get_old_classes( ' search-by-category' ); ?>">
<input type="hidden" name="product_cat" value="0">
<a href="#" rel="nofollow" data-val="0">
<span>
<?php esc_html_e( 'Select category', 'woodmart' ); ?>
</span>
</a>
<div class="wd-dropdown wd-dropdown-search-cat wd-dropdown-menu wd-scroll-content wd-design-default<?php echo esc_attr( $dropdown_classes ); ?>">
<ul class="wd-sub-menu<?php echo woodmart_get_old_classes( ' sub-menu' ); ?>">
<li style="display:none;"><a href="#" data-val="0"><?php esc_html_e('Select category', 'woodmart'); ?></a></li>
<?php
if( ! apply_filters( 'woodmart_show_only_parent_categories_dropdown', true ) ) {
$args = array(
'title_li' => false,
'taxonomy' => 'product_cat',
'use_desc_for_title' => false,
'walker' => new WOODMART_Custom_Walker_Category(),
);
wp_list_categories($args);
} else {
foreach ( $terms as $term ) {
?>
<li><a href="#" data-val="<?php echo esc_attr( $term->slug ); ?>"><?php echo esc_attr( $term->name ); ?></a></li>
<?php
}
}
?>
</ul>
</div>
</div>
<?php
}
}
}
Kind Regards
Cuando añado el código en functions.php me aparece: ” syntax error, unexpected ‘args’ (T_STRING), expecting variable (T_VARIABLE) or ‘{’ or ’$’ “
¿Está bien el código?
Hello,
Be sure that you are running PHP 7+ version for the best compatibility.
Please, disable all plugins that are not related to our theme and provide us your admin access. I will do my best to help you.
The code works well, check the video below.
https://www.loom.com/share/4a5f402050b94748977d0b6f15bdc5ffKind Regards
El traductor automático había traducido el código. Ya está solucionado ¡Gracias!
¿Y para el Product Fitlters de Elementor?
https://www.loom.com/share/29e0c1cfb4b24c33a85243b1de56f398
Hello,
Sorry, but we don’t have such functionality for hiding subcategories in the “Product filters” element. We also don’t have a custom code for that.
Kind Regards
Hi. Can I understand correctly, that components, plugins and etc. is including in this theme?
Hello,
Thank you for being interested in our theme.
Yes, everything you need to build exactly the same website as on our demo is included. You don’t have to purchase anything extra.
Kind Regards
Thanks. And I have one more question about delivery services, is theme include any Ukraine delivery services?
Shipping methods are WooCommerce functionality. It doesn’t include local delivery services. You might need to find some additional extension for this.
Kind Regards
Thanks!
Hello. If i buy and active Elementor Pro, can i then edit the theme templates with it? Like let’s say the product archive page, would i then be able to add different elements and so on.
Thanks.
Hello,
You can use Elementor PRO and all its WooCommerce widgets to create a new shop page. But our custom theme elements are not available in Elementor Pro and you can customize PHP templates like the shop page with it.
Kind Regards
Hello i want prevent customers from clicking to the Product single page can you Guide me please? i couldn’t find the option for it thank you
Hi,
Please, create a topic on our support forum and provide us all the necessary details about the request with some screenshots and including your admin access so we can help you https://xtemos.com/forums/forum/woodmart-premium-template/
Regards
i just need custom code to prevent clicking on the products single page link or image, in the shop page, thats all https://prnt.sc/1xmhkas i ty this .product-title a, .product-image-link { pointer-events: none; }
but still dont work
Please, create a topic on our support forum and our specialists will provide you with all the necessary assistance.
Website Styles Get Reset When I Edit Footer or Header
I have purchased the theme and while I’m editing the footer or header, the whole theme’s demo styling gets reset. This includes all the icons (menu drop down icon, pop up close icon, etc) fonts and colours. Please help me to fix this and I really don’t wanna have this messing up my working once I actually start developing the website!
I’m still at the initial website setup process and tried editing the footer and header for starters. Then this whole thing went to shit by resetting. I tried reinstalling WordPress + theme couple of times and its still the same.
Hi,
Please, create a topic on our support forum and provide us all the necessary details about the request with some screenshots and including your admin access so we can help you https://xtemos.com/forums/forum/woodmart-premium-template/
Regards
I did. Got a reply too, saying that it’ll be fixed in 15min. Still I didn’t get a reply after almost 10 hours whether its been fixed or not.
Sorry for the delay. Your topic has been already replied so you can continue the conversation there.
the solution provided helped. thank you very much.
We are glad that you sorted it out. Let me know if you need any further assistance.
Have a nice day!
I have a question: What do I have to do so that the main menu item gets the active menu colour when I am in a submenu below the main menu item. I want the users to see which submenu they are in.
Some of my parent items have sub-menu children. When I click on a child, its page loads and the sub-menu child item is highlighted. I would like its parent on the main menu bar to be highlighted also. How might that be done? Thanks.
I need the CSS to do that. Could you please help me?
Hi,
Please, create a topic on our support forum and provide us all the necessary details about the request with some screenshots and including your admin access so we can help you https://xtemos.com/forums/forum/woodmart-premium-template/
Regards
Hello I have a problem with your theme. I am trying to use the WAVE accessibility tool and there is one error that I don t know where is coming from. The error shows a div with the class super_links, super_links_msg etc that they contain an image without alt text. So, I run the tool on your demo website , and the error is still there .
Could you please tell me if you know, which element is the super_links_msg etc?
Thanks in advance.
Hello,
Errors related to undefined alternate image text shows because you didn’t define it in the Dashboard -> Media -> select some image -> in the “Alternative Text” field enter some text.
https://monosnap.com/file/d7WW13iMpVwxSlXy0GtQaPpEHECX7tPlease, send us the URL of your site with the accessibility tool that shows errors with the “super_links” classes via the contact form on our profile page because I didn’t find errors with the “super_links” class on our demo page.
Kind Regards
That image is from your demo. And we are using the WAVE Accessibility tool. I have seen the same error in all from our woodmart installations. EG dantesjewels.gr .
Hello,
I checked your site and I didn’t see any errors or images with the “super_links” class. Our demo site doesn’t have it either.
https://monosnap.com/file/aQ5v563vnhfIntQ0H7dI38JWceRYKdIn the screenshot you added the image source is different.
https://monosnap.com/file/dc1hO9s7YSkMwcbUyG20D3jrwi3UUAOur images or images that you uploaded to the media have sources like that.
https://monosnap.com/file/Frpprpq8qLLXKQLxYL6gP0XSmlJ89pTry to check your plugins on your browsers, maybe some of them make this error or these links are added by some browser extension.
Kind Regards
Well I am really thankful for your support. Thanks.
Hello,
Let us know if there’s anything else we can do for you! You can always reach us at any time.
Have a wonderful day.
Kind Regards
Hi,
Blog items images Alt Tags don’t show… why? (I would imagine should show at least post title as alt)
In pages like this: https://woodmart.xtemos.com/blog/
Thanks
Hello,
The “alt” text doesn’t show because it’s not defined. You can define the alternative text in the Dashboard -> Media -> select some image -> enter some text in the “Alternative Text” field.
https://monosnap.com/file/d7WW13iMpVwxSlXy0GtQaPpEHECX7tKind Regards
the color for links on pages, posts it does not work in Dark theme. I put it red in WEBSITE LINKS COLOR, and it always looks white, just like any text. Thanks.
Hi,
Please, create a topic on our support forum and provide us all the necessary details about the request with some screenshots and including your admin access so we can help you https://xtemos.com/forums/forum/woodmart-premium-template/ If your support is already expired then you need to extend it on ThemeForest first.
Regards
The child theme has been updated by itself. How do I turn off theme auto-updates?
Hi,
Please, create a topic on our support forum and provide us all the necessary details about the request with some screenshots and including your admin access so we can help you https://xtemos.com/forums/forum/woodmart-premium-template/ If your support is already expired then you need to extend it on ThemeForest first.
Regards
Why is disabling updates a big problem? Can you give instructions on how to disable this function?
We don’t see the “Purchased” label on your account. If you need to get support from us, you need to purchase our theme first. If you purchased it from a different account, use it to write your comments and messages.
delete comment