• Resolved baraak

    (@baraak)


    Hi,

    Is it not possible to disable changing price for a single SKU? for example we have some products that we listed using WP Lister, but we want to use an external repricer, so we don’t want WP Lister to change the price (but still sync qty and product details).

Viewing 1 replies (of 1 total)
  • Plugin Support WP Lab Support

    (@wp-lab-support)

    Hi @baraak

    You cannot disable the price update for a single listing only, but you can disable WP-Lister from updating prices for all locked listings in WP-Lister.

    All you would need to do is lock the listings in WP-Lister you want WP-Lister to not update prices for, then add this code:

    add_filter( 'wple_revise_inventory_status_skip_price', 'wplister_skip_price_update', 10, 3 );
    function wplister_skip_price_update( $skip, $listing_id, $listing_item ) {
        // return TRUE to skip price update
        return true;
    }

    … to the functions.php file of your active theme.

    Kind regards,
    John

Viewing 1 replies (of 1 total)
  • The topic ‘Disable Single Item Repricing’ is closed to new replies.