Viewing 15 replies - 1 through 15 (of 17 total)
  • I am using Wootique for my theme, but I am also having this same problem. Please advise!

    http://www.juvskincare.com

    Thanks,
    Brandon

    Roy Ho

    (@splashingpixelscom)

    @brando242 you should try updating your theme to the latest version including your theme framework.

    @tynette37 … it looks like you found a solution! I am having this problem, too, and would be so happy if you shared what you did to make it stop. Your featured images don’t flip over either. I’d love to know how to make that go away as well. Right now, I would be happy to just remove the featured products module – if only I knew how. Any advice is appreciated!

    I am updated on theme version and framework. Site is kichucollection.com and theme is wootique.

    Thanks!

    Akebono89

    (@akebono89)

    I have the same problem. please helpp !! πŸ™

    Plugin Contributor James Koster

    (@jameskoster)

    This is a theme bug which was resolved a few versions ago. Please update you themes to the latest version and keep them updated πŸ™‚

    dieseldynasty

    (@dieseldynasty)

    This theme bug is not corrected for me.

    I have the most recent wordpress, woocommerce and wootique and I can’t get this issue to stop from repeating itself.

    http://www.dieseldynasty.com, the pricing is correct except on the feature products on the main page where it says free.

    Akebono89

    (@akebono89)

    Instal woocommerce 1.6 and you resolve this problem.

    dieseldynasty

    (@dieseldynasty)

    Where do you find old iterations of the woocommerce plugin?

    menathor

    (@menathor)

    Same problem here. Woocommerce, wootique framework etc. all latest versions. Would be great to get a fix.

    menathor

    (@menathor)

    Hey just figured it out – the only “update” notifications and options in the dashboard are for the framework. There’s absolutely no way of knowing that the theme itself is out of date or that new versions have been released.

    I was on wootique 1.3.1 – did a manual update (downloaded the theme again from woocommerce.com, deleted old theme and uploaded to themes directory again) and it works fine.

    Guys, you really need a “one-click” update option for themes as well, just like you have for the framework. Or at the very least, a notification to let us know there is a new version out.

    Otherwise people will have no idea.

    dieseldynasty

    (@dieseldynasty)

    I’m running 1.6.4, and still have the issue. 1.6.5 has this listed in the changelog:

    2013.04.17 – version 1.6.5
    * includes/theme-woocommerce.php – Removed mfunc_wrapper.

    Is that what resolves this issue, because I changed only that file out and nothing happened.

    dieseldynasty

    (@dieseldynasty)

    Hmm, Well I tried uploading all the files to no avail, however if I backedup up all my settings and then deleted the themes completely, and then reuploaded wootique and then re-uploaded my settings file the issue went away, even though I was already running 1.6.4.

    It sure would be nice to have a better update button.

    woocommerce featured products are showing “free” on the home page,but shows the correct price on the product page. In Home page I want to show the correct price. Pls help.

    found a solution here…
    http://www.skyverge.com/blog/hide-woocommerce-free-price-label/
    you just put this code (below)into the functions.php file found in [Appearance] > [Editor] > functions.php file… scroll down to the bit that says ‘Add custom functions here’
    Gets rid of the Free! but wont show the price!!

    add_filter( ‘woocommerce_variable_free_price_html’, ‘hide_free_price_notice’ );

    add_filter( ‘woocommerce_free_price_html’, ‘hide_free_price_notice’ );

    add_filter( ‘woocommerce_variation_free_price_html’, ‘hide_free_price_notice’ );

    /**
    * Hides the ‘Free!’ price notice
    */
    function hide_free_price_notice( $price ) {

    return ”;
    }

    This my solution to fixing this bug.

    Open index.php on wootique folder
    goto line 43, found similiar code like this :

    while ( $loop->have_posts() ) : $loop->the_post(); $_product = &new WC_Product( $loop->post->ID );

    change class “WC_Product” –> “WC_Product_Variable”

    Finally :

    while ( $loop->have_posts() ) : $loop->the_post(); $_product = &new WC_Product_Variable( $loop->post->ID );

    Now featrue product display correct price.

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Featured Products "free" on home pg’ is closed to new replies.