Support » Plugin: WooCommerce » [Plugin: WooCommerce – excelling eCommerce] Woocommerce pricing not working?

  • Resolved twissandweber

    (@twissandweber)


    Hello. I’m trying to set up an online shop with WooCommerce but I’m running into some problems when trying to put prices to my items.

    I’ve tried fiddling around with both simple and variable products and I can’t seem to get the price to say what I want. Even when I put in a certain price, what it ends up being is free. The only time that I can get the real price to show up, instead of it just saying free, is when I have the item for sale. But I don’t want to have to do that.

    Am I inputting the information wrong? I’m just simply typing in a value like $85 for simple products, and the same for variable products too. I’ve tried different formats like just 85 or $85.00 but nothing seems to work.

    Is it an upgrade malfunction? I don’t know… but would be extremely grateful for any solutions.

    http://wordpress.org/extend/plugins/woocommerce/

Viewing 15 replies - 1 through 15 (of 16 total)
  • Plugin Author Mike Jolley (a11n)

    (@mikejolley)

    Prices need to be NUMERIC and include no currency symbols.

    85
    85.00

    If you use variations, you must set the price of each variation you add.

    Hi i please need your help.

    Can you explain to me why my variation prices are not showing. they are really inconsistent.

    http://electrophix.co.uk/?product=ipad-2-repairs

    thanks

    lewis

    teknikalguru

    (@teknikalguru)

    Hi Lewis,
    i am having a ridiculous time on this website. but its killing my time when I cant figure out one freaking thing. if you goto trendnsave.com. you will see all the products say Free. But when you click on the product. It will show its price. I am tired of this thing,. I cant remove the Free label. Did you figure it out?

    Roy Ho

    (@splashingpixelscom)

    @teknikalguru – did this just started happening after 2.0+ update?

    teknikalguru

    (@teknikalguru)

    Probably did. I have always been a Fan of not updating software. If it ain’t broken, why fix it. I did like the new features that it added. So I updated Woocommerce. Is there a way to revert back without any loss? I did not backup my settings. I will as soon as I fix this glitch.

    I have been adding test products up with minimal options. And it still pops up as free. I found this is. http://www.foxrunsoftware.net/articles/wordpress/hide-woocommerce-free-price-label/.

    However, I using Filezilla and Crimson Editor. Trying to find Functions.php. Havent yet find the file.

    teknikalguru

    (@teknikalguru)

    Roy Ho

    (@splashingpixelscom)

    Well you need to be clear as to if this happened after the 2.0 update as I asked it for a reason. If it did happen after, then it means your theme is probably making an instance of the products instead of using the function get_product. In 2.0, the products class has been abstracted which means you need to use the function that in turns creates the instance instead of access it directly.

    But this is just a speculation to your issue if indeed it is what happened to me. I had to replace all instantiations with the provided function.

    teknikalguru

    (@teknikalguru)

    How do I do that?

    Roy Ho

    (@splashingpixelscom)

    Well you need to read the documentation for it…Go to Google and search for woocommerce 1.6.6 to 2.0 and it will give you a link…

    teknikalguru

    (@teknikalguru)

    It has not been resolved. I dont know what exactly tool for or even change.

    Roy Ho

    (@splashingpixelscom)

    Again you have to check if you’re using any instantiations of the product class…Because if your theme isn’t using this, then this isn’t even your issue…

    hotplugin

    (@hotplugin)

    here’s a quick solution:

    add_filter( 'woocommerce_variable_free_price_html', 'hide_free_price_notice', 10, 2 );
    add_filter( 'woocommerce_free_price_html',          'hide_free_price_notice', 10, 2 );
    
    /**
     * Hides the 'Free!' price notice
     */
    function hide_free_price_notice( $price, $product ) {
      return '';
    }

    TRY IT !

    Punka Tess

    (@punka-tess)

    I’m having this problem as well. What page do you add that code to? Thanks!

    hotplugin

    (@hotplugin)

    inside functions.php

    charlestupman

    (@charlestupman)

    Has anyone managed to fix the variable not showing problem, I have tried everything and its a real time drain. http://www.camelotoakfurniture.com/shop/solid-oak-bed/

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘[Plugin: WooCommerce – excelling eCommerce] Woocommerce pricing not working?’ is closed to new replies.