12896 comments found.
How can I get 6 recent products in a column? Now I’ve got only 3. https://ibb.co/nnhD1w
Hello,
We suggest you to use our theme Products (carousel or grid) element for this purpose since you are able to set a number of columns option there.
Regards
Date of the next release? Please.
Hi,
We hope to release the next version in 5-10 days.
Regards
Hi, actually when promotions occurs, a percentage based is displayed on the image of products. I would like to change that for some text, but didnt found the option.
Regards.
Hi,
You can change this text in the file “inc/woocommerce.php”. PHP function name – “woodmart_product_label()”.
Regards
it is possible to put this file in child theme ?
Yes, you can copy this PHP function to the functions.php file in the child theme and then edit it.
Well i just check the function, it’s pretty big, what do i need to do ? Regards.
You need to copy it to the functions.php file in the child theme if you want to edit it.
Well it doesnt help, i dont really care if i need to copy into the functions.php just the lines, or the whole file into the child theme, what i need is the actual code… Regards.
Here is a code you need to use to edit our theme labels
function woodmart_product_label() {
global $product;
$output = array();
$product_attributes = woodmart_get_product_attributes_label();
if ( $product->is_on_sale() ) {
$percentage = '';
if ( $product->get_type() == 'variable' ) {
$available_variations = $product->get_variation_prices();
$max_percentage = 0;
foreach( $available_variations['regular_price'] as $key => $regular_price ) {
$sale_price = $available_variations['sale_price'][$key];
if ( $sale_price < $regular_price ) {
$percentage = round( ( ( $regular_price - $sale_price ) / $regular_price ) * 100 );
if ( $percentage > $max_percentage ) {
$max_percentage = $percentage;
}
}
}
$percentage = $max_percentage;
} elseif ( $product->get_type() == 'simple' || $product->get_type() == 'external' ) {
$percentage = round( ( ( $product->get_regular_price() - $product->get_sale_price() ) / $product->get_regular_price() ) * 100 );
}
if ( $percentage && woodmart_get_opt( 'percentage_label' ) ) {
$output[] = '<span class="onsale product-label">-' . $percentage . '%' . '</span>';
}else{
$output[] = '<span class="onsale product-label">' . esc_html__( 'Sale', 'woodmart' ) . '</span>';
}
}
if( !$product->is_in_stock() && !is_product() ){
$output[] = '<span class="out-of-stock product-label">' . esc_html__( 'Sold out', 'woodmart' ) . '</span>';
}
if ( $product->is_featured() && woodmart_get_opt( 'hot_label' ) ) {
$output[] = '<span class="featured product-label">' . esc_html__( 'Hot', 'woodmart' ) . '</span>';
}
if ( get_post_meta( get_the_ID(), '_woodmart_new_label', true ) && woodmart_get_opt( 'new_label' ) ) {
$output[] = '<span class="new product-label">' . esc_html__( 'New', 'woodmart' ) . '</span>';
}
if ( $product_attributes ) {
foreach ( $product_attributes as $attribute ) {
$output[] = $attribute;
}
}
if ( $output ) {
echo '<div class="product-labels labels-' . woodmart_get_opt( 'label_shape' ) . '">' . implode( '', $output ) . '</div>';
}
}
I know that already… But i’m not a coder ! PLease give me the adited code to copy/paste into my functions.php or add the possibility to switch from percentage to normal words in your themes. Regards.
But if you just want to disable sale percentage you can do this without code modification in Theme Settings -> Shop -> Product labels.
Widget does not work Instagram does not display photos by hashtag
Hi,
Yes, we already fixed this issue and it will be released next week.
Regards
I have another problem when I scroll down website before buttons which are on the left and right side of my logo load. They are behind logo when I scroll up after that. https://ibb.co/fyZu4G
Try to add the following snippet to the Custom CSS to fix the problem
.main-header:not(.act-scroll) .woodmart-navigation .item-level-0:nth-child(2) {
margin-right: 160px!important;
}
Works. Thanks.
Hello. How can I decrease space between logo and sidebar which is under it?
Hi,
Could you please provide us some screenshots and your website link so we can help you?
Regards
By default, our header has a margin bottom and if you want to remove it on your home page, you can simply add a negative margin top for the first row on the page with Visual Composer. So just set -40px for example to compensate it.
It works. Thanks 
I have another problem when I scroll down website before buttons which are on the left and right side of my logo load. They are behind logo when I scroll up after that. https://ibb.co/fyZu4G
Try to add the following snippet to the Custom CSS to fix the problem
.main-header:not(.act-scroll) .woodmart-navigation .item-level-0:nth-child(2) {
margin-right: 160px!important;
}
Hi guys, couple of questions:
1. How do i remove the “Related Products” from the product description tab? (see image)
https://www.awesomescreenshot.com/image/3114349/5bb854fde4324d17b5624473c862c53c
2. How do i remove an image from a product gallery? (currently, im only given a choice to edit it. (see image)
https://www.awesomescreenshot.com/image/3114351/c9c048910aff883c9b85d8f404c6be3d
Thanks!
Dan
Hello,
Thank you for using our theme.
1. These related products are not related to our theme and added by some of the extra plugins installed.
2. From the screenshot, we see that you are using some extra plugin for this also. By default, WooCommerce has a button to remove images from the gallery. See screenshots https://gyazo.com/921c4576a2f67d9e544412731c3caf74
Regards
Thanks for that.
You were right. It was JetPack that was creating it.
Dan
OK, we are glad that you found it 
Regards
This theme can use with PHP 5.6 ? My shared host only have PHP 5.6.
Hello,
Yes, our theme is fully compatible with PHP 5.6 version.
Regards
This is stunning! By far the best of all the themes I have purchased over the years! Feature rich but fast! Only thing is I wish you could match your excellent design by fixing the styling and look on Dokan vendor dashboard pages. Thank you for the great work!
Hello,
Thank you very much for your feedback! We took into account your suggestions about the Dokan dashboard styles 
Kind Regards
Great! We are waiting as we have many clients looking for a marketplace solution and I really want to use your theme!
Great! We are waiting as we have many clients looking for a marketplace solution and I really want to use your theme!
It does not look like that the Instragram sidebar widget works when “photo size” is set to thumbnail. It works fine when “photo size” is set to large.
Hello,
We just tested both variants and it works correctly for us. Read this support topic, maybe you have a similar problem https://xtemos.com/forums/topic/instagram-thumbnail-crashes-on-widget-on-homepage-instagram-did-not-return/ We will patch the Instagram widget in our next theme update too.
Regards
Will you upgrade code of your theme to compatibility with new PHP 7.2 ?
Hi,
Yes, our theme is already compatible with new PHP 7.2.
Regards
Presale question. Hello, how many columns can be set on the e-shop page. We need 5 or 6 columns? Thank you for your question. Jiri
Hello,
Thank you for being interested in our theme.
Our theme supports bootstrap columns for the shop page: 2, 3, 4 and 6.
Regards
Hello, thank you for answer. I have one more question. Due to the heavy load of our e-shop, I would like to install a template for another hosting where we would make all the settings. We would then migrate to an existing e-shop. How’s the license? Can I sign in and opt out after setting? Thank you Jiri
Yes, you can move to another hosting and don’t worry about the license.
Hi. I want to use the sticky description on products. Its great for desktop but I noticed that on mobile devices the images show the one after the other instead of a slider. its not user friendly to scroll 4-5 images to get to the add to cart button. Is it possible to have sticky description on desktop and a swipable slider on mobile?
Hello,
Thank you for the suggestion. We will improve this functionality in our next theme update.
Kind Regards
Thank you so much for everything. By far the best theme i have used and i will keep using to all my clients
Thank you very much!
Hello, is possible to keep different header style for different pages?
Hi,
Yes, you will be able to set different header layouts available in our Theme Settings for different pages.
Regards
Thank you. So we can set different style for different products too?
Could you please describe in a bit more details what header do you want to use so we can check is it possible or not? Can you provide some examples?
your theme is perfect for my business but i want to ask few question before i purchase it. 1. Is there option for shipping like shown in this screenshot https://prntscr.com/i2i740 Sample copied from this link https://www.aliexpress.com/item/Posters-And-Prints-Wall-Art-Canvas-Painting-Cuadros-Beach-Forest-Wall-Pictures-For-Living-Room-Nordic/32842351362.html?spm=2114.search0104.3.53.38543b1fYZ1rBO&ws_ab_test=searchweb0_0,searchweb201602_2_10152_10151_10065_10344_10068_10342_10343_10313_10059_10340_10341_10534_100031_10084_10604_10083_10103_10307_10615_10142,searchweb201603_1,ppcSwitch_5&algo_expid=0db05f50-5ff9-42ba-ac35-285557566b1a-6&algo_pvid=0db05f50-5ff9-42ba-ac35-285557566b1a&priceBeautifyAB=5
I want different shipping rate for different product to different countries and different courier service via like DHL and EMS.
2. The images in your website is very beautiful and small in size with good quality. My images are very big in size(8MB), how do i reduce size of image without losing quality like in your site.
Thank you
Hi,
1. Sorry, but there is no such shipping popup in our theme and WooCommerce plugin by default. Read more about available shipping options in the plugin’s documentation https://docs.woocommerce.com/document/setting-up-shipping-zones/
2. Firstly, you will need to resize them to appropriate size. For example set their width to 1200 or 1900. Then, you can use this any service like this to optimize them https://tinypng.com/
Regards
-
With new update i get: error public_html/wp-content/plugins/woodmart-core/inc/auth.php on line 106 
Hello,
This notice is harmless and you can suppress it disabling wp debug mode in your wp-config.php file. We will fix this notice in the next update that will be released next week.
Sorry for troubles.
Hello There! Really nice theme first of all, welldone 
I am helping out my friend in developing an eCommerce site for his grocery store and your organic theme seems like a great fit. May I ask:
1) Can we start as a single shop version and want to transform into a marketplace later, how difficult it will be (we are considering Dokan, never used it before tho)?
2) For the Compare function, does it work only within a single shop or marketplace-wide?
3) For Marketplace: a. I cannot find the “vendors listing” page, can you share the URL? b. Is there a link that can also take me to the vendor’s portal? His staff will have to use that portal (not go to the wordpress backend) so would be good to have a look. c. Can we brand our vendor portal area so our shop vendors will see our logo when logged in? d. Will there be a “by Shop A” tag or anything similar in the product page, so users can click on it then visit their shop? e. If User shop items from different shops, how does the shipping calculated and can we adjust it? f. Can vendors set their own coupon/ discounts? g. Can we set a marketplace-wide discount? (e.g. free shipping over $500)
4) Can you also show me the User’s Portal?
Sorry for so many questions, just want to clarify before making a purchase 
Million thanks! E
Hello,
Thank you so much for being interested in our theme.
1. We suggest you install this plugin and check how it works before using it with our theme since we can’t estimate is it difficult or not for you 
2. It works all over the site.
3. You can check how Dokan plugin works on our demo here https://woodmart.xtemos.com/handmade/ As for all questions regarding this plugin we suggest you to contact their developers for help since they are not related to our theme.
Kind Regards
Thanks so much! Already submitted a ticket @ Dokan, once cleared will get back to you 
Great, thank you!
Hi,
I recently put my website on a VPS and i have the 1.9 version, however there seems to be a problem with my SVG images inside the Visual composer, they’re not showing !
In the editing page they are visible, but in the front no SVG images display !
Could you help me please ?
Thank you
Hi,
Please, create a topic on our support forum and provide us your admin and FTP access so we can check what is wrong there. https://xtemos.com/forums/forum/woodmart-premium-template/
Regards
Alright !
Thank you 
hi
thanks for this awesome theme, we have the Avada change to this , more better!
Now need your help, on Front page the “Browse category” menu we would between category page link , custom link unfortunately not support the svg icons, we have custom link placed with font-awesome icon, but the icon not visible. Have you idea? better where the custom link with svg icon
Hello,
Thank you very much for choosing our theme.
As you can see, SVG icons can be uploaded for categories via Dashboard -> Products -> Categories and then will be shown in the menu. Unfortunately, you are not able to use custom SVG icons for custom links in the menu.
Regards
Hi, thanks, yes the svg see is not avaiable here, but my problem the font awesome icon not displayed. Set for custom menu in aperance – >menu settings font awesome icon place the icon name fa-heart and on frontend menu not display
Try to set only the icon name there. For example “heart” instead of “fa-heart”.
Regards
Hi, thanks for help works fine,
Now can you help me the facebook login setings? Get URL error, have you not description step by step for this?
Here is an instruction from our documentation https://xtemos.com/docs/woodmart/faq-guides/configure-facebook-login/
hi! Thanks for helps, works fine all, Five star support & theme
Thank you very much. Would be glad if you can leave a 5 stars review for our theme
You can do this in the Downloads section in your account on ThemeForest.
Kind Regards
Hi, I’ve done it already,
Now help me, we would like massonry gird (with first wide ) place in one page but cann not only category data source use, if possible page links place with this layout?
Hi,
Sorry, but it works for categories only. In your situation, we suggest you to combine a similar layout using our Banner element. Just upload your pictures and add some text to them. You will be able to set your pages links there as well.
Regards
Hi I would like use the HOME Jewerly demo page for one product landing page not for home, how can i import the demo to not owerwrite the hompege
Hello,
You can import this page manually via Dashboard -> Tools -> Import -> WordPress. XML files for separate import for each version you can find in the folder “inc/dummy-content/”.
Regards
Thanks
now can you help me, we have many options for one product and under product image many empty space. In the theme option we have the tabs to accordition set, this fine, but where better if can help to move under product image. check image https://prnt.sc/i302rt
Hi,
Try to add the following code snippet to the functions.php file in the child theme to move them
function woodmart_custom_hooks() {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_output_product_data_tabs', 39 );
add_action( 'woocommerce_before_single_product_summary', 'woocommerce_output_product_data_tabs', 39 );
}
add_action( 'wp', 'woodmart_custom_hooks', 1500 );
Regards
That’s wonderful! Thanks!
Could you please send us a link where can we see this problem?
Please, create a topic on our support forum and provide us your admin access so we can check everything.
hi, can you please help me, now under att to cart we have many empty space, where better the upsell in twoo column here set, existing to this settings? i not fundt, or one code if can you give me, where fine
Sorry, but it is not possible to show upsells products under the add to cart option in our theme.
hi, can you please help me, i can not translate this word on my account page, not fund this on po. https://prnt.sc/ioe37z
Hi,
1. Try to click on “Sync” button in Loco Translate when translating our theme’s PO file.
2. Translate it via Theme Settings -> Login / Register.
Regards
hi, thanks, i use the PO Edit, and not fund the username and email string, the them settings “registration text fund, ok”
another issue: the sale and stock label now rounded, can this on theme setting set? https://prnt.sc/iqfor8
Hi,
You should be able to find this string in our theme’s PO files. Be sure that you are running the latest version of the theme and clicked on “Sync” button.
What do you mean about our products labels?
the product labels it was a rectangular rectangle earlier, now rounded and the long string its bad
Another problem here https://ajandekbazis.hu/elerhetosegek/ the tabs not working get error : error code: jquery.js?ver=1.12.4:2 Uncaught Error: Syntax error, unrecognized expression: # at Function.fa.error (jquery.js?ver=1.12.4:2) at fa.tokenize (jquery.js?ver=1.12.4:2) at Function.fa (jquery.js?ver=1.12.4:2) at Function.a.find (jquery-migrate.min.js?ver=1.4.1:2) at a.fn.init.find (jquery.js?ver=1.12.4:2) at a.fn.init.a.fn.find (jquery-migrate.min.js?ver=1.4.1:2) at getTarget (vc-accordion.min.js?ver=5.4.5:1) at Accordion.getTarget (vc-accordion.min.js?ver=5.4.5:1) at HTMLAnchorElement.<anonymous> (vc-accordion.min.js?ver=5.4.5:1) at jquery.js?ver=1.12.4:2
Please, create a topic and describe your problems on our support forum so we can help you. https://xtemos.com/forums/forum/woodmart-premium-template/
Hi , can you please help me, before you have add this code for product description mouve to under product image, but now not working, have you idea?
Hi,
Try to add the following code snippet to the functions.php file in the child theme to move them
function woodmart_custom_hooks() { remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 39 ); add_action( ‘woocommerce_before_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 39 ); }
add_action( ‘wp’, ‘woodmart_custom_hooks’, 1500 ); Regards
Hi,
Where exactly have you added this code? Send us your website link.
Regards
to functions.php end,
hi, where one syntax error, now working fine, thanks
Does this allow manufacturer listing and filter/search capability?
Hello,
Our theme includes filters for some any kind of products attributes. So you will be able to create an attribute called a manufacturer and create filters for them.
Regards