Informacija
Kategorija | Remonto įrankiai ir priedai |
---|
** * Bulk update all WooCommerce product prices - reduce by 5% * Run this once, then comment out or remove the code */ function reduce_all_woocommerce_prices_by_5_percent() { // Uncomment the line below to run the function // add_action('init', 'bulk_reduce_product_prices_once'); } function bulk_reduce_product_prices_once() { // Check if already run to prevent multiple executions if (get_option('prices_reduced_5_percent') == 'yes') { return; } // Get all products $args = array( 'post_type' => 'product', 'posts_per_page' => -1, 'post_status' => 'publish' ); $products = get_posts($args); foreach ($products as $product_post) { $product = wc_get_product($product_post->ID); if (!$product) continue; // Handle simple products if ($product->is_type('simple')) { update_simple_product_prices($product); } // Handle variable products if ($product->is_type('variable')) { update_variable_product_prices($product); } } // Mark as completed update_option('prices_reduced_5_percent', 'yes'); // Clear WooCommerce cache wc_delete_product_transients(); echo '
All product prices have been reduced by 5%!
8,95 € (be PVM 7,40 €)
Išparduota
Produktas laikinai neprieinamas.
Kategorija | Remonto įrankiai ir priedai |
---|
Produktas laikinai neprieinamas.