28308 comments found.
Nice theme but needs a bit more work on your blog post widgets / style.
Not many options for users that have a huge article site + woocommerce. Very minimal towards magazine features for posts. For example:
Posts dont show categories, tags, and also there are no customized widgets for sidebars that have a unique look on posts.
Also wanted to add some posts on homepage but not many options available on style =/
Will this be improved in the future? I have a website that’s very huge in article database and most of the traffic comes from article viewers, and ofcourse that leads to more sales. 
For example : muscleandstrength.com
Hello How I can modify social media icons? Because there is no “Houzz” icon I would like to use RSS icon (photoshop it) and use as an link to my “Houzz” account. Where I can find this icon and how I can change rollover txt from “Subscribe to RSS” to custom one..
Thanks
Hi there, the social icons is a icon font made with http://icomoon.io. You need a bit custom development to add a new icon.
Subscribe to RSS text is located in flatsome/inc/shortcodes/share_follow.php
thanks!
Np 
Pre sale question.. Is this theme compatible with WC Vendors? Im thinking it might have a problem with Ninja Forms. since you use that plugin to run this theme
Hi there, the plugin should work with it. Is there know issues with WC Vendors and Ninja Forms?
Hey, my client bought this template (another account). So I have a question: I want the menu layout like in the demo. But in our version, there is a thin line between the menu and the slider. Where we can change this?
Hi there, have you installed latest version of the theme? Flatsome 2.5.3? 
Hey, I’ve updated over the Wordpress Toolkit and it says, its the newest one. Can I adjust something?
Try open the page in the Page Builder, and then save it again. Could you email this to support@uxthemes.com if that doesn’t work?
It works, nice, thanks 
Is there any formatting in the theme for quotes / quotation in a blog post?
You can create a quote with the default WordPress editor.
Thank you …. was wondering if there was any fancy quote option …. with a parentheses or something … the default is just a bar on the left …... sort of doesn’t look like it’s a quotation… 
Hiya, Flatsome is breaking Multisite Network sign ups. When users create a new site on multisite, they are sent a confirmation email. When they click on the activation link, they are taken to the WordPress confirmation page such as http://example.domain.com/wp-activate.php?key=472ceb8aa513ac3e ... but Flatsome is giving a white / blank page, preventing users from signing up ….. The problem does not exist in 2012 or other themes, we have tested … help please!
Also, getting this error in logs when attempting to hit the wp-activate page, which is blank (example: http://alpinescience.com/wp-activate.php ) [17-May-2015 19:13:44 UTC] PHP Fatal error: Call to undefined function is_shop() in /home/alpinesc/public_html/wp-content/themes/flatsome/inc/template-tags.php on line 657
Hi there, we’ll take a look and have it fixed asap. It should work if you activate WooCommerce pr site
“PHP Fatal error: Call to undefined function is_shop() in /home/alpinesc/public_html/wp-content/themes/flatsome/inc/template-tags.php” is happening because WooCommerce is not installed. You could add it as a “Must use plugin”: https://codex.wordpress.org/Must_Use_Plugins
It doesn’t work even if woocommerce is enabled … here is our main site with woocommerce enabled: http://alpinescience.com/wp-activate.php .... still get blank page …. we don’t get the blank page when we disable Flatsome ….
Hi again, do you have latest version of the theme installed?
The function in tempalte-tags.php should look like this:
if(ux_is_woocommerce_active()){
if($flatsome_opt['category_row_count'] == '1' || is_shop()){
add_action('woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt', 30);
} else if($flatsome_opt['short_description_in_grid']) {
add_action('woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt', 30);
}
}
It checks if WooCommerce is active before running that function.
Yes, we’re running 2.5 and it has that in template-tags.php. It also fails on your demo as well: http://flatsome.uxthemes.com/wp-activate.php ... even though you aren’t on multisite, WP has wp-activate.php by default and should take users to wp-login.php?registration=disabled with a login screen and the message that “user registration is disabled” .. here’s an example: wptavern.com/wp-activate.php …. This used to work on Flatsome, btw ….
Hi again, thanks for noticing. I think I found a solution. Try change that code to this:
/* Show short description in grid */
if(ux_is_woocommerce_active() && function_exists('is_shop')){
if($flatsome_opt['category_row_count'] == '1' || is_shop()){
add_action('woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt', 30);
} else if($flatsome_opt['short_description_in_grid']) {
add_action('woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt', 30);
}
}
Basically just change this:
if(ux_is_woocommerce_active()){
to this:
if(ux_is_woocommerce_active() && function_exists(‘is_shop’)){
Thank you. That allows some code to load when viewing page source (none loaded prior to this change), but we still have a blank white page: http://alpinescience.com/wp-activate.php
Better yet, here’s a site we just registered and this is the exact link that is clicked from the confirmation email that yields the white confirmation page: http://test33.alpinescience.com/wp-activate.php?key=2dce41f290dfca30
Could you try enable the wp_debug? That should give you an proper error message instead of a white screen.
This is the error: Notice: Undefined property: stdClass::$public in /home/alpinesc/public_html/wp-includes/ms-settings.php on line 184 Fatal error: Call to undefined function is_product() in /home/alpinesc/public_html/wp-content/themes/flatsome/inc/extras.php on line 52
Try change line 49 in extras.php to this: if(ux_is_woocommerce_active() && function_exists(‘is_product’)){
It’s 47 in my extras.php … then I get this error: Fatal error: Call to undefined function get_product_search_form() in /home/alpinesc/public_html/wp-content/themes/flatsome/inc/shortcodes/search.php on line 16
if(function_exists('get_product_search_form')){
echo '<div class="ux-search-box">';
get_product_search_form();
echo '</div>';
}
Good deal, that seems to get the trick done! The widgets don’t quite work at bottom of the page, but we just need activations to work, so this is great! It would be nice to be able to style it but it looks like WP core doesn’t have a CSS container for wp-register or wp-activate … so it is what it is! Thanks for your help! ... http://alpinescience.com/wp-activate.php
Aweseome:) This fix is included in latest version of the theme that was released yesterday
Looks like some of the fix wasn’t in the update as I just uploaded update and registration functionality was immediately broken after the update …. only the header loads …. will have to go through this message again in the AM and reapply all the fixes …
What does the debug message says?
No message when debug enabled but error log has this: [21-May-2015 08:01:12 UTC] PHP Fatal error: Call to a member function get_cart_url() on a non-object in /home/alpinesc/public_html/wp-content/themes/flatsome/header.php on line 93
I just realized that today we turned on “SHOW MINI CART” to “Top Right” in header settings, so that is the trigger for error and have confirmed turning that mini cart off makes wp-activate.php work again …
Somehow WooCommerce is activated but never loaded if you run wp-activate.php. That’s why the error messages is there. Could you try network enable WooCommerce?
Theoretically, yes. But then we would have a bunch of confused users and support tickets about why, how and what woocommerce is, higher potential for plugin conflicts on those sites, potential issues with themes that are not woocommerce friendly and unnecessary resource usage on page loads … 
Could you try delete the WooCommerce folder? 
I temporarily removed the woocommerce folder so it was no longer in the flatsome theme folder and the issue and same header error persisted …
It looks like this is a WP core issue when you get down to it … it’s attempting to load the root / main site’s theme … on a domain that is not expecting it, so the page loads fail …. the best solution would probably be to fix this in wp-activate.php so that the activation page uses the default theme the new site will be using (which doesn’t have theme or woocommerce resources available) .... will likely hire someone to fix this … but always open to trying other fixes if you have them … thank you for your help so far!
Please check my site : http://shamanicharmonics.com/product/3d-stickers-mad-hatter-lsd-blotter-art-officially-licensed/
The product image gallery is not working when clicking the next arrow or the thumbnail itself.
Thanks.
Mark
Hi there, I think you have a problem with a plugin. Could you test disable some plugins and check if it helps?
I disable plugins and test but still the problem exist.
Could you enable this? https://codex.wordpress.org/WP_DEBUG That will show you better where the problem is.
Is it okay that I will give you an admin access then check the backend..? Thanks
You still need to enable the debug for us to figure out what’s wrong.
Hi, I need to make a megamenu with +-40 categories. It should have only one heading – Brands, and 3 columns with +-15 categories. I can only make 3 headings with 3 columns. Is it possible to do this in megamenu? thx
Hi there, take a look here on how the built-in mega menu works: http://uxthemes.helpscoutdocs.com/article/51-3-2-menu-dropdown
Presale question:
I have been looking for a theme with animated/video banner capability and noticed that yours does this. I have a small clip that I only want to play once instead of continuously looping as your demo does. Is it possible to set as play once? And if so, is it a simple fix?
Thanks
Hi there, yes it’s possible to disable the loop on videos 
The http://uxthemes.helpscoutdocs.com – description very concise. Many of the themes and actions have to study and explain himself. Really can be described in greater detail and clarity. I have no doubt, then would be far fewer questions. Basically the theme is developed and the least for the advanced WordPress users. For beginners this theme management is rather complicated. Particularly difficult situation with translations into other languages. Not help and translation plugins. Unfortunately, if you want to make the site appear correctly (translations) you will use to professional services… If you want to do it myself, it will be a long and hard work. Resume – the theme suitable if you are not change anything, only. Otherwise, there will be a lot of questions to which no one can answer for you.
Hi there, we really want to improve the documentation. Could you email what you think should be more clear to post@uxthemes.com? We would appreciate it a lot! 
Unfortunately, I don’t have time for it… 
Hi,
As the attached image link, If I prefer the text area column in single product page (no sidebar) to be wider, let’s say 50%, how can I do it? I can’t just edit the .large-4 {width:33.333333%} to 50% right? I guess that will affect many other pages?
https://dl.dropboxusercontent.com/u/26630687/Screenshot%202015-05-17%2015.10.46.png
Hi there, try enable the ‘full width’ template in Theme Options > Product 
Sorry again for the stupid question!!
Hi,
Using your new Posts Grid shortcode to display a WooCommerce category (Product Post) but although there are products in the category, it returns “Nothing found.”
Have you been able to get this work?
Wizard247
Hi there, could you email this to support@uxthemes.com and we’ll try help you out 
Thanks but I’ve used a different shortcode for now.
Is there some custom css to remove the hover tooltips from the follow social icons?
Hi there, sorry that’s currently not possible. You can disable all tooltips by adding ’.tooltipster-base{display:none!important} to custom CSS
That will work. Thank you!
Basket icon has become compressed when I added the latest update
Any help to correct this is greatly appreciated
Hi there, have you added any custom CSS to the theme?
Yes – but just removed it all – and the compressed icon remains – I did clear caches too
Hi,
How to add image on footer?
Thanks
resolve 
Awesome 
Hi,
Is it possible to sell photos and build a photography marketplace with flatsome ?
Thank you
Hi there, the theme can do anything that WooCommerce can do.) I think it should be possible 
Hi! This is a pre buy question:
I will use this Shop Theme on German Market. I also use the GermanMarket Plugin from Marketpress. I need to have a Cart and Checkout Process fully in German. Could you supply me that?
I read that the .po Files included in your latest version. But which .po Files? I need the German .po File. Is that one with it?
Regards
Hi there,
This theme works with the German language, but you need to translate some strings using this method: http://docs.woothemes.com/document/woocommerce-localization/
Hi there, Is there a way to control the color ( black or white) of “Divider”? Thanks.
Hi there, sorry you need to add custom CSS to do that.
I have installed the Flatsome version 2.5 chlld and the main on Word Press. Working on the appearance. Enabled the Flatsome Builder Beta. None of the Select Preset Visuals show and the work cannot be saved. The help desk appears to not work weekends. I have emailed them. Anyone have this issue? I an not technical and thought this would be a relative easy setup. Does anyone have any suggestions please? Thanks
Hi there, could you email this to support@uxthemes.com and include an access to your site? We’ll take a look and have it fixed 
Why does this happen? http://www.classycrow.com/wp-content/uploads/2015/05/Screen-Shot-2015-05-15-at-5.38.38-PM.png Every product page does this, but it disappears after the page loads a while.
Hi there, have you set the correct image sizes here? http://uxthemes.helpscoutdocs.com/article/44-1-1-install-theme (Check step 1.3)
I changed it to the defaults, and used Regenerate Thumbnails, and it’s still doing it.
I changed the woocommerce settings to the recommended sizes, that is.