Discussion on WoodMart - Multipurpose WooCommerce Theme

Discussion on WoodMart - Multipurpose WooCommerce Theme

By
Cart 111,839 sales
Recently Updated
Well Documented

xtemos supports this item

Supported

This author's response time can be up to 1 business day.

12798 comments found.

Hello Mr. Authorized. I purchased your licensed Woodmart theme on Envato Market. But I am having a problem with updating. The version I have installed is “Woodmart 7.3.3” but I saw that you brought the “7.4” update. Can you please help me so that I can update my theme to the latest version?

Also, when I go to Appearance / Themes, I see the following error under my theme.

Problematic themes The following themes are installed but missing.

Name Description Documentation Stylesheet missing. delete Licensing Stylesheet missing. delete Plugins Stylesheet missing. delete

Hello,

We have answered your question on our support forum. Please continue the conversation there.

Kind Regards

When you turn on Social media links you get the badges on the side of the screen for your chosen links to your social media pages. They show on a full screen browser I would like then to show on a mobile device as well. Is this possible?

Hello,

Add the following code snippet to the custom CSS section in Theme Settings to fix this

body .wd-sticky-social {
    display: flex;
}

Kind Regards

Hello, can you please tell me what should I install, Wordpress or Woocommerce hosting, so I will not have any problems with theme? Also can you please tell me how to sign up in your forum, is it automatic from here or I need to signup with same credentials?

Hello,

Thank you for contacting us.

You need to install WordPress on your server or hosting and then install our theme following the instructions https://developer.wordpress.org/advanced-administration/before-install/howto-install/ https://xtemos.com/docs-topic/installation-process/ You can create an account on our support forum here https://xtemos.com/my-account/ Find your purchase code as described in the article https://help.market.envato.com/hc/en-us/articles/202822600-Where-Is-My-Purchase-Code

Kind Regards

Hello i noticed a problem at the checkout. The checkout order review in the checkout is not there anymore. It went down after address fields. I noticed more people got this problem in the past. However the css codes are not working for me.

Hi,

Please, create a topic on our support forum and provide us with 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 there,when i try to re-connect to instagram because the previous connection has expired but i can not choose facebook/instagram account at the final step . Do you know why ? i have updated all the plugins – wp and theme.

Hi,

Please create a topic on our support forum and provide us with 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

Hi,

My support period has expired, but may I ask where I can set the breakpoint so that the header switches to tablet/mobile view earlier? The issue is that on smaller or older monitors, particularly in PC mode, the header looks completely wrong. I’ve checked your demo sites, and it’s the same issue there as well. For example, on displays smaller than 1920×1080, like laptops or older MacBook Airs, the header and the menu get messed up, becoming two rows, etc. It should switch to the tablet/mobile header much sooner in these cases. What is the solution for this?

Thank you.

Hello,

Unfortunately, there is no option to change the breakpoint for the header responsive view.

Kind Regards

hi, how do we fix the google map inside the Contact Us form, inside admin it mentioned for Development only, front page of contact us show error, tq

Hello,

Thank you for reaching out to us with your question. We appreciate that you use our theme and are happy to help you in any way we can.

To ensure that we are able to provide you with the best support possible, we encourage you to create a new topic on our support forum with your question or issue. Our support team actively monitors the forum and will be able to provide you with a prompt and thorough response.

To create a new topic on our support forum, please follow these steps:

1. Visit https://xtemos.com/forums/forum/woodmart-premium-template/ and sign in with your account.

2. Click on the “Create New Topic” button and provide a descriptive title and detailed description of your question or issue.

3. Click “Submit” to post your question.

Once you have posted your question on the support forum, our team will review it and provide a response as soon as possible.

Thank you for your cooperation, and we look forward to hearing from you on the support forum.

Best regards

Hi Guys, Wich Hosting company and plan do you recommend for better speed results?

Hello,

It depends on your requirements; no universal solution exists for all cases. We usually recommend using Cloudways, Kinsta, or Bluehost.

Kind Regards

Thanks !!!

You are always welcome.

Hello. I am using Demo Mega Electronics template. Where can I find out which picture thumbnails are needed for the template and which are not needed. I have too many pictures in my store, I would like to remove the creation of thumbnails that are not used in the template

Hello,

Thank you for reaching out to us with your question. We appreciate that you use our theme and are happy to help you in any way we can.

To ensure that we are able to provide you with the best support possible, we encourage you to create a new topic on our support forum with your question or issue. Our support team actively monitors the forum and will be able to provide you with a prompt and thorough response.

To create a new topic on our support forum, please follow these steps:

1. Visit https://xtemos.com/forums/forum/woodmart-premium-template/ and sign in with your account.

2. Click on the “Create New Topic” button and provide a descriptive title and detailed description of your question or issue.

3. Click “Submit” to post your question.

Once you have posted your question on the support forum, our team will review it and provide a response as soon as possible.

Thank you for your cooperation, and we look forward to hearing from you on the support forum.

Best regards

Hello,

I imported my product database from PrestaShop and it went well.

When I want to display the “sale products” on my page it does not work for imported products but only for the new promotional products that I have just created.

Is it possible to regenerate something so that my imported products are taken into account?

regards

If you know the answer, maybe it would be better to give it to me please :)

I have 5 licenses from you but the support expired 5 days ago..

We can’t say exactly, but the imported data is most likely missing some meta keys that mark products as “sale” in WooCommerce.

Kind Regards

I appreciate your answer, i will buy a new license for the appropriate helping.

God bless

I want next to the values to appears also the following names: - ‘Height’; - ‘width’: - ‘Width’; - ‘Length’;

I paste the following code to the function.php but does not work. Can you provide to me a solution?

“Thank you beforehand!”

// Modify WooCommerce product attributes add_action(‘woocommerce_product_additional_information’, ‘custom_modify_product_attributes_output’, 5);

function custom_modify_product_attributes_output() { global $product; }

if (empty($product)) {
    return;
}
ob_start(); ?> <?php foreach ($product->get_attributes() as $attribute) : ?> <?php endforeach; ?>
<?php echo custom_get_attribute_label($attribute->get_name()); ?>: <?php $values = array(); if ($attribute->is_taxonomy()) { $attribute_taxonomy = $attribute->get_taxonomy_object(); $attribute_values = wc_get_product_terms($product->get_id(), $attribute->get_name(), array(‘fields’ => ‘names’)); foreach ($attribute_values as $value) { $values[] = $value; } } else { $values = $attribute->get_options(); } // Output attribute values with labels foreach ($values as $index => $value) { echo custom_get_attribute_label($attribute->get_name($index)) . ’: ’ . $value; if ($index < count($values) – 1) { echo ’ × ’; } } ?>
<?php
$output = ob_get_clean();
echo apply_filters('custom_modified_product_attributes_output', $output);

// Function to get attribute label based on attribute name function custom_get_attribute_label($attribute_name) { switch ($attribute_name) { case ‘height’: return ‘Height’; case ‘width’: return ‘Width’; case ‘length’: return ‘Length’; default: return ucfirst($attribute_name); } }

Hello,

Thank you for reaching out to us with your question. We appreciate that you use our theme and are happy to help you in any way we can.

To ensure that we are able to provide you with the best support possible, we encourage you to create a new topic on our support forum with your question or issue. Our support team actively monitors the forum and will be able to provide you with a prompt and thorough response.

To create a new topic on our support forum, please follow these steps:

1. Visit https://xtemos.com/forums/forum/woodmart-premium-template/ and sign in with your account.

2. Click on the “Create New Topic” button and provide a descriptive title and detailed description of your question or issue.

3. Click “Submit” to post your question.

Once you have posted your question on the support forum, our team will review it and provide a response as soon as possible.

Thank you for your cooperation, and we look forward to hearing from you on the support forum.

Best regards

Hi there. My support has been expire but i have a small query. while using your review module with image upload, i am getting this error : https://imgur.com/a/dmeRlCd can you please help me with this. thanks alot.

Hello,

It seems to be a problem with your server configuration. You need to consult with your provider for help on this matter.

Kind Regards

hi i do reset password for my account on https://xtemos.com/ to reset purchase code and reset email not delivered to me how reset my password .. my email ghesn202233@gmail.com

Hello,

Please, send us your purchase code so we can help you. Use the contact form on our profile page https://themeforest.net/user/xtemos

Thank you in advance.

Hello, I have had some recurring problems with the template when I activate the JS delay. The menu and cart stop working correctly. Is it possible that you can tell us which parts of the java in the template should be excluded from the js delay? Thank you.

Hello,

Please, provide us with your admin access so we can log in and check this on your side. Use the contact form on our profile page https://themeforest.net/user/xtemos

Thank you in advance.

Hi, If I change the Pre demo for another?, products uploaded and filters remain safe or will be lost?

Hello,

Some demo versions don’t replace your content, but others will remove all the previously imported data. For example: Megamarket, Furniture 2 or Mega electronics.

Kind Regards

More than two months without updates. When do you plan the next update? Is there a way to preview it or see a list of changes for future updates?

Hello,

We are working on our new update, which will be released next month. There is no public changelog available yet.

Kind Regards

Hi, please check woodmart compatibility with WCFM, many features and styles are not working correctly… For example: 1. Buttons for quickly updating products in the store are displayed only in 1 line of the product; they must be displayed in all products. 2. WCFM has 3 styles of displaying seller labels; In the quick view of a product card, only 1 style is displayed by default. 3. Buttons… styles, height, size on the WCFM provider control panel.

You haven’t released updates for WCFM for a long time

Hello,

This option is added for WooCommerce product editing interface. Unfortunately, it is no possible to automatically add this ability for other custom interfaces like that one.

Kind Regards

Doesn’t this work with Dokan too?

This option works with WooCommerce interface only. All multivendors plugins have their own custom interfaces and they don’t support custom features like that.

how can i change the background image of Furniture 2 template : https://prnt.sc/XwReT4ycb32L i want to use my own images

Hi,

Please, create a topic on our support forum and provide us with 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 has already expired, you must extend it on ThemeForest first.

Regards

Hi. I use you theme specific popup version in Wpbakery. When I am logged in and have an embedded code it works great and it shows the embedded stuff. But as soon as we are logging out from Wordpress and go to the site it wont display the embedded stuff.

Really wierd and I cant send you a picture but you can try yourself here (press the orange button on the bottom of the page). https://onsalasol.se/bada-kanslig-hy/

Hi,

Please, create a topic on our support forum and provide us with 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 has already expired, you must extend it on ThemeForest first.

Regards

Hi. I have now renewed and posted the topic: Problem with popup modal WPbakery

Please help when you can

Hello! For some reason “layouts” break the CSS when used in the single product page and in the product archive (perhaps incompatibility with a plugin). This is why I am trying to use an action hook to add a slider on top of the categories, but when I use the hook woocommerce_before_main_content, the slider is positioned after the filters and before the product catalog. I think the theme does something in this part, so I would like to know how to leave the slider here where it is shown in the image:
https://imgur.com/XxPbCo7

If you know any way to also make it full width, I would greatly appreciate it.

thank you!

Hello,

Please, send us your admin access so we can check your current layout and see what can be made to achieve the layout you want.

Kind Regards

I sent the credentials in the contact form. thank you

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey