• Hello,

    It seems like the price is saved in a non expiring transient. So If i set a single price for a product, it then cannot be changed. It shows that it is changed but on checkout it is still the original value. The only way I could make this go away is force deleting your transiet i found to be causing the issue with this in functions.php

    #prevents shipping price bug from the inozzila per product shipping plugin that saves a transient on all products

    function prevent_shipping_transient_update() {

        // Delete the transient on every page load

        delete_transient(‘shipping-transient-version’);

    }

    add_action(‘init’, ‘prevent_shipping_transient_update’);

    The page I need help with: [log in to see the link]

  • The topic ‘shipping price wont change’ is closed to new replies.