Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Support David G

    (@gravid7)

    Hi @eszabi

    Thanks for bringing our attention here. We will check this bug from our end and resolve this in upcoming updates.

    Plugin Author ronyp

    (@ronyp)

    Hello @eszabi,

    Can you please let me know which theme you are using at the moment?
    As I did try on my own and seems working quite well.
    So kindly let me know if you are using any other plugin related to price and also please let me know which theme you have installed.

    Kind Regards,
    Rony P – Support Team

    Thread Starter Eszabi

    (@eszabi)

    Hello @ronyp

    Theme: Hello Elementor.
    I do not use other price related plugins.

    Thanks

    Plugin Author ronyp

    (@ronyp)

    Hello @eszabi,

    We are not able to replicate the issue with the above theme.
    Can you please reach us here?

    Kind Regards,
    Rony P – Support Team

    Thread Starter Eszabi

    (@eszabi)

    Hello @ronyp

    Yes, I sent a message here.

    Plugin Author ronyp

    (@ronyp)

    Hello @eszabi,

    Actually, the root cause for the above is not the Booster for the woocommerce plugin. The price convertor converts the prices in the background at once and saves them all together. It does not have any direct connection with displaying prices.

    Kindly please give it a try below code in the functions.php file.

    function edit_price_display() {
        global $product;
        $price = $product->price;
        echo wc_price($price);
    }
    add_filter('woocommerce_get_price_html', 'edit_price_display', 10, 2);
    add_filter('woocommerce_get_variable_price_html', 'edit_price_display', 10, 2);

    Marking this thread as resolved.

    Kind Regards,
    Rony P – Support Team

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Bulk Price Converter problem for variable products’ is closed to new replies.