Discussion on Flatsome | Multi-Purpose Responsive WooCommerce Theme

Discussion on Flatsome | Multi-Purpose Responsive WooCommerce Theme

Cart 224,561 sales
Recently Updated
Well Documented

UX-themes supports this item

Supported

This author's response time can be up to 2 business days.

27124 comments found.

Hi, are there any admin demo snapshots?or a demo? thank you

Sorry, we dont have that. Here is a screenshot of the Theme Option Panel :https://www.evernote.com/shard/s20/sh/712997a6-c4cd-4e66-962c-f60068c9bb94/7abbdbd4c267977f9e78f1a187497afa

Hello Everyone!

We’re working hard to further develop this theme, and improving our support response times. Flatsome is our only focus for the future. We have big plans for it, but will still keep it lightweight and fast. All future updates are 100% free for our customers :)

If you have any pre-sales or ideas, please post them here in the item comments and we’ll answer them promptly.

Support Questions and complains should go to support@uxthemes.com

Best Regards,
Tommy Vedvik

Do you already have a fix for the slider issue on iPads (not showing pictures in landscape view / only when moved to portrait)? Thanks :-)

Not sure. Could you try disable parallax on one of the slides? Just to test if that shows?

That’s it! Works without parallax!

Ok, added to bug list. Will try have it fixed in next version of the theme!

Purchased this theme and love it. Really appreciate your quick responses to questions too. Will buy your themes again! :)

Thank you! :)

Can you recommend a working currency switcher to the theme and version of woocommerce?

Thanks in advanced!

Is there a way to hide breadcrumbs and “showing all results / sort by” on the shop page?

NVM found it, Anyone else looking for this its

Try add this to custom CSS: .breadcrumb-row{display:none}

yoga108

I created my own snippet, using the theme’s own code, for producing a tags shortcode. Save it in your functions.php file (I save mine in a custom plugin file) and then use it the same as the others. ie [ux_custom_products_tag tag=”england-f-a”] Here’s the code:-
//Custom slider for Tags
function ux_custom_products_tag($atts, $content = null) {
    $sliderrandomid = rand();
    extract(shortcode_atts(array(
        "title" => '',
        'products'  => '8',
        'tag' => 'enter-default-tag',
        'orderby' => 'date',
        'order' => 'desc',
        'columns' => '4',
        'infinitive' => 'false'
    ), $atts));
    ob_start();
    ?>

    <?php 
    /**
    * Check if WooCommerce is active
    **/
    if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
    ?>

        <?php slider_script($sliderrandomid,$columns,$infinitive)?>

        <?php if($title){?> 
        <div class="row">
            <div class="large-12 columns">
                <h3 class="section-title"><span><?php echo $title ?></span></h3>
            </div>
        </div><!-- end .title -->
        <?php } ?>

        <div class="row column-slider">
            <div id="slider_<?php echo $sliderrandomid ?>" class="iosSlider" style="overflow:hidden;height:100px;min-height:100px;">
                <ul class="slider large-block-grid-<?php echo $columns; ?> small-block-grid-2">
                  <?php

                    $args = array(
                        'product_tag' => $tag,
                        'post_type' => 'product',
                        'post_status' => 'publish',
                        'ignore_sticky_posts'   => 1,
                        'posts_per_page' => $products,
                        'orderby'         => $orderby,
                        'order'         => $order
                    );

                    $products = new WP_Query( $args );

                    if ( $products->have_posts() ) : ?>

                        <?php while ( $products->have_posts() ) : $products->the_post(); ?>

                            <?php woocommerce_get_template_part( 'content', 'product' ); ?>

                        <?php endwhile; // end of the loop. ?>

                    <?php

                    endif; 
                    wp_reset_query();

                    ?>
                </ul>   <!-- .slider -->  
                  <div class="sliderControlls">
                        <div class="sliderNav small hide-for-small">
                                <a href="javascript:void(0)" class="nextSlide disabled prev_<?php echo $sliderrandomid ?>"><span class="icon-angle-left" /></a>
                                <a href="javascript:void(0)" class="prevSlide next_<?php echo $sliderrandomid ?>"><span class="icon-angle-right" /></a>
                        </div>
                      </div><!-- .sliderControlls -->
                </div> <!-- .iOsslider -->
    </div><!-- .row .column-slider -->

    <?php } ?>

    <?php
    $content = ob_get_contents();
    ob_end_clean();
    return $content;
}
add_shortcode( 'ux_custom_products_tag', 'ux_custom_products_tag' );
If you’re interested, I also created a drop-down selection of product tags too as I use it for displaying a drop-down navigation for my sports goods website. The drop-down is populated by all the product tags and then goes to the relevant page when you select it. Here’s the code:-
/**

* Product tags dropdwon shortcode

*/
function brisk_product_tags_dropdown() {
?>
    <form action="/" method="get">
    <select name="cat" id="cat" class="postform">
    <option value="-1">Shop by Category/Team</option>
    <?php
    $terms = get_terms('product_tag');
    foreach ($terms as $term) {
        printf( '<option class="level-0" value="%s">%s</option>', $term->slug, $term->name );
    }
    echo '</select></form>';
?>
<script type="text/javascript"><!--
    var dropdown = document.getElementById("cat");
    function onCatChange() {
        if ( dropdown.options[dropdown.selectedIndex].value > '' ) {
            location.href = "<?php echo get_option('home'); ?>/?product_tag="+dropdown.options[dropdown.selectedIndex].value;
        }
    }
dropdown.onchange = onCatChange;
--></script>
<?php
}

add_shortcode( 'product_tags', 'brisk_product_tags_dropdown' );

Awesome code snippets! :)

Thanks. Awesome theme.

I’m helping a client with their site and want to use the Shortcode Inserter, but I can’t find it anywhere. I tried different browsers and disabled all the plugins, but still couldn’t see it.

*Sorry, I just saw a post from a few hours ago saying the latest version is needed. My goof!

Yeah :) We’ll have a better Shortcode inserter in next version :)

is there a way to put tagged listings or categories in the “Product sliders in tabs” block?

a shortcode like this, but for tags.

[ux_featured_products]

Hi, did you see this comment?

MarkGorey;

I created my own snippet, using the theme’s own code, for producing a tags shortcode. Save it in your functions.php file (I save mine in a custom plugin file) and then use it the same as the others. ie [ux_custom_products_tag tag=”england-f-a”] Here’s the code:-
//Custom slider for Tags
function ux_custom_products_tag($atts, $content = null) {
    $sliderrandomid = rand();
    extract(shortcode_atts(array(
        "title" => '',
        'products'  => '8',
        'tag' => 'enter-default-tag',
        'orderby' => 'date',
        'order' => 'desc',
        'columns' => '4',
        'infinitive' => 'false'
    ), $atts));
    ob_start();
    ?>

    <?php 
    /**
    * Check if WooCommerce is active
    **/
    if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
    ?>

        <?php slider_script($sliderrandomid,$columns,$infinitive)?>

        <?php if($title){?> 
        <div class="row">
            <div class="large-12 columns">
                <h3 class="section-title"><span><?php echo $title ?></span></h3>
            </div>
        </div><!-- end .title -->
        <?php } ?>

        <div class="row column-slider">
            <div id="slider_<?php echo $sliderrandomid ?>" class="iosSlider" style="overflow:hidden;height:100px;min-height:100px;">
                <ul class="slider large-block-grid-<?php echo $columns; ?> small-block-grid-2">
                  <?php

                    $args = array(
                        'product_tag' => $tag,
                        'post_type' => 'product',
                        'post_status' => 'publish',
                        'ignore_sticky_posts'   => 1,
                        'posts_per_page' => $products,
                        'orderby'         => $orderby,
                        'order'         => $order
                    );

                    $products = new WP_Query( $args );

                    if ( $products->have_posts() ) : ?>

                        <?php while ( $products->have_posts() ) : $products->the_post(); ?>

                            <?php woocommerce_get_template_part( 'content', 'product' ); ?>

                        <?php endwhile; // end of the loop. ?>

                    <?php

                    endif; 
                    wp_reset_query();

                    ?>
                </ul>   <!-- .slider -->  
                  <div class="sliderControlls">
                        <div class="sliderNav small hide-for-small">
                                <a href="javascript:void(0)" class="nextSlide disabled prev_<?php echo $sliderrandomid ?>"><span class="icon-angle-left" /></a>
                                <a href="javascript:void(0)" class="prevSlide next_<?php echo $sliderrandomid ?>"><span class="icon-angle-right" /></a>
                        </div>
                      </div><!-- .sliderControlls -->
                </div> <!-- .iOsslider -->
    </div><!-- .row .column-slider -->

    <?php } ?>

    <?php
    $content = ob_get_contents();
    ob_end_clean();
    return $content;
}
add_shortcode( 'ux_custom_products_tag', 'ux_custom_products_tag' );

“shortcode” button in the wordpress editor disappeared suddenly. Any suggestions?

To the PHP files? Just make a backup of your changes and re-do them in the new version.

and the Products on store? I can automatically update? By changes in the files is ok, but my fear is having to re-register all products in the store. I’ll have to reenter the products on the store?

Hi, you dont have to re-enter the products if you update. They will stay the same :) Learn more here: http://uxthemes.helpscoutdocs.com/article/20-updating-theme

Hi,

is it possible to show only quick view on clicking on a product thumbnail? – would be great for affiliate stores. Don’t need the “big” product page.

Nice feature would also be a “go to store” button which pops out instead of the ”+ QUICK VIEW”-button. :)

Thanks! Cheers from Germany

Hi, that would require custom development, but should be possible :)

Hi, I noticed that the text inside banner is not centered at different screen resolutions, how can I center it? Already set text_align=”center” text_pos=”center”

This only happens when text width is set like 100%

Ah, ok. I think you should have maximum 80% width.

Hi, Sent you a support email on April 30th and another follow up but no reply!. Embedding vimeo videos as a regular video (NOT as video banners) do not work. I want to place a clickable video (so user can click play and watch it) as one of the placements. Here is a screen shot. http://awesomescreenshot.com/0452rlf959

How can I do that?

Thanks,

Did you try add the embed code inside [col] [/col] there? Could be that you need a vimeo shortcode plugin or something

Hi pre purchase question, for the transparent header homepage version, can the slider be 100% height?

We’ll have an option to set slider to 100% height in next version :) meanwhile you can use pixels.

Hi, thanks for a really nice theme! I’m using it together with Woocommerce and Sensei and it seems that the layout of the Sensei pages is not properly working. I am trying to get the sidebar to show on for example a course page but I’m not having much luck. http://isales.fi/kurssi/some

Many thanks for your help!

Br, Linda

Thanks for the quick reply! Is it due to the theme that the sidebar is not possible? I was looking at the demo for Sensei and the Sensei specific pages (courses, lessons) have the sidebar. If it is due to the theme, do you have an estimate when you will release the new version? http://demo2.woothemes.com/sensei/courses-overview/

We don’t have any sensei pages on the demo site. We made a quick fix for it for a customer which we included with the theme, but that did not include any sidebar option. We’ll improve the Sensei styling and add more option in the 2.0 version :)

Ok, good to hear! I look forward to the 2.0 version. Thanks so much for your help!

Just update Wordpress and this theme to the latest version.

I’m unable to put more than 1 item in de Footer 1 and Footer 2. I should be able to put up to 4 items there.

What’s going wrong?

Hi, thats really weird. Do that suddenly happen? Or was it a plugin you installed? Do you have latest version of WordPress, flatsome and Woocommerce?

Hi, thats really weird. Do that suddenly happen? Or was it a plugin you installed? Do you have latest version of WordPress, flatsome and Woocommerce?

I got it: widgets-access should be put OFF. Otherwise it will not work.

1)_Is there a way to make the megamenu to have multiple columns without making subcategories in the menu field (without playing with the css)? I notice if you have a product categories on the menu has the parent and no subcategories, everything is in a single column.

2) When entering the css label, ie label-popular for menu category, all the subcategories are tagged as well for label-popular, is there a way to avoid this?

THx

1) Sorry thats currently not possible.

2) Oh, will have that fixed for next version.

CSS code to get rid of bold text in navigation menu I just want it to be regular. Thanks.

Try add this:

ul.header-nav li a {font-weight:normal; text-transform: none}

Thanks, I have to say. Although there are a lot of people complaining about response time ( myself included so I am not ripping on them ) I am actually pretty damn impressed with how well you seem to respond considering the amount of questions and emails I am sure you get. So people, cut the guy a little break :)

Thanks! :)

Noticing that Nextend Facebook Connect is working for signing in but gravatars seem to be broken … and it doesn’t look like they’re updating their plugin much …. just a heads up …

I heard rumours the facebook API is down. That could be the reason.

Mentioned it because the Twitter and Gplus versions are broken and not being maintained …. and it looks like the FB version could be on the same path …. but who knows …. maybe we’ll give it a shot again in the future …

Ah, thanks for the heads up

Hi I’m very interested in purchasing your theme however i’m concerned about it because the Yslow tool in chrome fails to complete when testing your site. This is something you should test and fix.

Hi, you can see an interesting post about speed of Flatsome here: http://www.estorecoaching.com/ecommerce-with-wordpress-selecting-a-wp-theme-for-ecommerce/

Not sure why the Yslow tool does not work.

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