1954 comments found.
Hi… how to make the blog page in the grid layout and without sidebar, like this link: https://demo.uix.store/sober/blog/?blog_layout=grid&layout_default=no-sidebar .....this is my link: http://www.ecommercepratico.com.br/florest_blog/
Hello,
You can change the layout of the blog page in Appearance > Customize. Please open a ticket on the support site, our supporters will help you check it.
https://uix.ticksy.com/Thank you
is there a dark theme option?
Hello,
Unfortunately, this theme doesn’t support dark version. There is the light version only.
Hello,
I have a problem in my cart page. Indeed, when I delete an item from my cart the page turns but never refreshes. Could you please help me? Also, a year ago I asked if it was possible to have a sticky add to cart button on the product pages. You answered that you would work on it. Have you found a solution since?
Sincerely,
Dylan
Hello,
Thank you for your feedback. It could be a conflict between the theme and one of installed plugins on your website. Please share your website address, so we can check it and assist you better.
With the sticky add to cart, we have found a solution for it. We will try to update it asap.
Thank you
Hello,
Thank you for your answer. My website is https://www.finca-home.fr/
Please inform me as soon as you find the solution because I have been waiting for it for too long.
Sincerely
Hello,
It seems your web-server blocked all ajax requests: https://prnt.sc/1w39c0u
Please contact the supporter of the hosting provider and ask them checking this issue.
Thank you
Hello,
Thank you for your answer, my hosting provider is ovh and they don’t block Ajax request. They can’t help me with this problem.
Sincerely
Actually, it could be a problem with the file permission, or the firewall of web-server. Sometimes, it could be the disk space is full. The best way is check the error log file from the web-server to see the problem.
You can also test this issue by changing the theme. So we can find out if this issue come from the theme.
Thank you
Hello after update my size variations on product show different and also customers can not choose different size (for example T shirt we have S and M size and M can not be choosen). What is this wrong? Thank you
Hello,
Thank you for your feedback. It looks like a problem of the variation swatches plugin. At this time, our theme has just supported a new swatches plugin. Please try it instead of the old one.
https://wordpress.org/plugins/wcboost-variation-swatches/We have tested this plugin and it is fully compatible with the theme.
Thank you
Hi Guys, Do you have an example where you can add an instagram feed on the footer? Cant seem to find one in your previews? Thanks 
Hello,
Yes, you can check the Instagram feed on the demo v12:
https://demo.uix.store/sober-furniture/home-v12/?header_layout=v2&header_wrapper=wrapped&footer_widgets_layout=2-columns&footer_content_enable=1&footer_instagram=1Kind regards
Hello again, I observed 2 issues after update: Related products appeared, even if they are switched off from the Customize/Shop/Product and I don’t want them. So I’ve Switched them off with code in the custom CSS: .related.products { display: none; }
Hello,
Thank you for your feedback. Actually, there is no option to disable the related products in this theme. We can confirm your CSS is correct. It seems a plugin on your website cause this issue. You can try this PHP code to remove it.
add_filter('woocommerce_product_related_posts_query', '__return_empty_array', 100);
Please open a ticket on the support site if you need more assistance.
Thank you
Hello, In product category page, when the option to show thumbnails on slider is selected (eg:https://demo.uix.store/sober/products/?products_item_style=slider), the design breaks when the second thumbnail is in different size/ratio that the first one. eg: https://prnt.sc/1volumw
Hello,
Thank you for your feedback. It seems the product thumbnails are not generated completely. Please share your website address, so we can check it and assist you better.
Thank you
Thank you for the reply. Can you please share an email address so i can send the website address?
You can use the contact form on this page: https://themeforest.net/user/uixthemes#contact
Thank you
Hi, it’s possible to show Instagram Feed only in Home page, I want to hide it in others pages…
Hi,
Yes, you can try this CSS to show it on the homepage only.
.footer-instagram {
display: none;
}
.home .footer-instagram {
display: block;
}
Thank you
Hi, thank you for your reply, the solution, however, does not eliminate the loading of images from Instagram because the element remains in the DOM (even if it is hidden), my request concerns the possibility of choosing where to show the instagram-footer because the loading of the same penalizes the performance of the site.
Hello,
It requires to use custom PHP code. You need to use a child theme and put this code to the file functions.php:
add_action( 'after_setup_theme', function() {
remove_action( 'sober_footer', 'sober_footer_instagram', 7 );
if ( is_home() ) {
add_action( 'sober_footer', 'sober_footer_instagram', 7 );
}
}, 20 );
Please open a ticket on the support site if you need more assistance.
Thank you
Hello,
How can I make Add to cart button always visible on mobile? All options are only on hover.
Thank you!
Hello,
The theme has an option to display it on mobile devices. You can find it in the theme options section. Please open a ticket on the support site if you need more assistance.
Thank you
Hi there, currently when I hover on price it is goes up and I can see “add to cart” only. I want to disable this function. Can you please let me know how to do this?
Hello,
Do you want to disable the “hover” effect? Please open a ticket on the support site and share your website address. Our supporters will check it and give the CSS code to disable it.
https://uix.ticksy.com/Thank you
Hi guys,
I’ve been using Sober for quite some years now. It’s all great. Except for the obsolete checkout page design.
Are you guys going to upgrade it into a 2 column layout or a multistep checkout flow anytime soon? Thank you!
Hello,
Thank you for your feedback. Yes, we’re having a plan to add more option for the checkout page with 2 columns layout. We will try to add it in a near update.
Thank you
Hello, After updating the theme and plugins, my swatches changed. Obviously there is some change in the plugin for the color swatches, but I cannot make them to look the same way – they were horizonraly aligned, now they are verticaly. Please advice!
Hello,
Thank you for your feedback. Could you please share an example URL to your product page? So we can check it and assist you better.
Thank you
Hello, this is the link, where you could see my swatches now: https://pinjewelry.shop/product/sanded-ring/
They used to be bigger and fixed in one row – now the 4th came to new raw. I tried with the new variables provided and this is the best I could achieve with them, but it is not as I want it. I don’t want them on a second raw.
As we checked, this plugin has just updated and added more CSS for pupular themes, includes this Sober theme. We think you should change to the plugin that we recommended. All data will be mapped to the new plugin automatically, so you don’t need to do anything.
Hello again, Now I saw that on the shopping page add to cart and wish list circles are almost entirely hidden after this update. I can’t find the reason for this, too. Please assist!
This plugin added a new swatches to the shop page and it caused this issue. At this time, please try this CSS to fix it:
.woocommerce ul.products li.product .buttons .variations_form {
display: none;
}
In the next update, we will try to support this update if it is possible.
Thank you
Hello, Thank you for the quick response! The code you’ve provided helped for fixing the shopping page. I didn’t get exactly what you are suggesting for the swatches thought? Which is the plugin that you are recommending? Isn’t this the one that comes with the theme. I don’t remember as I made the site a year ago. If not which is the one you suggest and does it provide pictures of colors swatches options? I will try it and if it doesn’t work I will go back to the previous version. Thank you again!
The plugin you are using was recommended by the theme. But it haven’t been updated for a year, until recently. So we had to find another plugin that could work properly with the theme.
Here is it: https://wordpress.org/plugins/wcboost-variation-swatches/
At this time, we are trying to support both, but this plugin seem to have the best compatible. You will have more options to customize swatches in every single product. You will have options in Customizer > WooCommerce too.
Hello,
Short update: I changed the plugin, but that didn’t help for my problem. I can’t find setting options for the new plugin, too.
But I found where the problem comes from – flexwrap set to wrap.
and I've added this code and it fixes both alignment and size issue. tooltips were hidden and now they are showing again.
.woocommerce .tawcvs-swatches { flex-wrap: nowrap; }
I would just ask to tell me where exactly the options are, as I don’t find them in the customizer.
Thank you!
I found the options as you mentioned. So all issues resolved. Thank you!
You’re welcome 
Hi there.
Something is wrong with the Sober addons plugin, I cannot edit any page of my website, I can only edit when I disable this plugin.
I have already updated the template, the plugin and everything within my site but none of this works, I have also deactivated all the plugins I have and the problem is only solved when I deactivate Sober Addons.
What should I do?
Thanks.
Hello,
Thank you for your feedback. We’ve checked this issue on our side, this plugin worked well. Firstly, please try to delete this plugin and reinstall it. If the problem still remain, please open a ticket on the support site and provide the admin login credentials. We need to check it from the backend to find the issue.
Thank you
Greetings, I am having issues with the image thumbnails for the products always being blurry. We have tried changing the ratio, changing it to 1:1, and the 3rd option to upload the thumbnail at its original size. None of these options are taking away the blurriness of the thumbnails on the product page. Please let us know how this can be resolved. Thanks!
Hello,
By default, WordPress always reduce the image quality by 20%. You can check this topic for more information and follow it to disable this images compression.
https://wordpress.org/support/topic/image-compression-15/Please open a ticket on the support site and provide the admin login credentials too. Our supporters will check your website and give you move ideas to solve this problem.
Thank you
I see that the latest built-in widget filter is not working perfectly on mobile, as if I enable with AJAX, the alignment of dropdown attributes filter is gone wrong when the other attributes disappear. Is this a bug???
Hello,
Thank you for your feedback. Please update the theme and the Sober Addons plugin and test this problem again.
If you can share your website address, we will check it and assist you better.
Thank you
Hi Theme and Sober addon is on the latest version,
You may refer to https://cherryq.com.my/shop/
Great thanks!
Please try this CSS to fix it:
@media (max-width: 767px) {
.woocommerce .shop-toolbar .filter-widgets .product-filter {
float: none;
}
}
Thank you
Thank you so much for your fast respond.
Hi, I just purchased your nice theme!
I am using this version: [ https://demo.uix.store/sober-elementor/home-v2/?header_text_color=light&topbar_enable=1&topbar_left=switchers&topbar_color=dark&utm_source=landing ]
and I have a problem with the /cart/ page, where the primary menu and the page menu (cart, wishlist, order tracing) are conflicting (one on top of the other) is there an easy solution to move primary menu on the top of the page like in the demo? I don’t have any customization so far.
Thank you
you can see a print screen here [ https://ibb.co/fMQZt8t ]
Hello,
Thank you for your feedback. Please open a ticket on the support site and share your website address. Our supporter will help you check this issue.
https://uix.ticksy.com/Thank you
Hello,
is there a possibility to change the mobile header to also show the search and whishlist icons (as in this image: https://staging-easylife.kinsta.cloud/menumobile.jpg)?
Thanks
Hello,
Unfortunately, this theme has no option to change the mobile header layout. You can change the header icon only.
Kind regards
is an update planned with this integration?
It’s really very useful as users view sites from mobile and almost all mobile sites now have menu, cart, search and whislist icons.
We totally agree with you. We have a plan to update the mobile version for this theme too. We’re trying to improve the mobile experience over updates. And the mobile header is an important part of it.
There is a problem with revolution slider and demo content. When I try to import only the sliders nothing happens. It loads and downloads thousands of images and then nothing appears in revslider. Either the plugin is not functioning correctly or the sliders are missing.
Hello,
please open a ticket on the support site and share the website address with admin login credentials. Our supporters will check it for you.
https://uix.ticksy.com/Thank you
Hey guys, I want to buy but I have installed WP 5.8.1 and WooC 5.7.0. Will it works here?
Hello,
Yes, this theme works properly with the latest version of WP and WooCommerce.
Is there no way to make product long descriptions left align need to add a way to toggle the justify for short and long descriptions separately. Two switches for both sections. So can have long description left align and still be able to justify center for short descriptions.
Hi,
Thank you for your feedback. At this time, you can use this CSS to align the long description left.
.woocommerce div.product .woocommerce-tabs .panel {
text-align: left;
}
If you need more assistance, please open a ticket on the support site. Our supporters will help solve your questions.
https://uix.ticksy.com/Thank you
Thank you.
Hey your logo looks like my logo >:C
Yes, we can see it
They looks pretty similar.