Skip to content

Instantly share code, notes, and snippets.

@hamidrezayazdani
Last active September 1, 2021 13:43
Show Gist options
  • Save hamidrezayazdani/9d9402115f5facab29ff437879ffaabb to your computer and use it in GitHub Desktop.
Save hamidrezayazdani/9d9402115f5facab29ff437879ffaabb to your computer and use it in GitHub Desktop.
تبدیل قیمت کلیه محصولات ووکامرس از ریال به تومان
-- توجه: حتما قبل از اجرای این کد، از دیتابیس نسخۀ پشتیبان تهیه کنید --
-- وارد فضای هاست خود شده و PHPMyAdmin را باز کرده و کد زیر را در بخش SQL اجرا کنید. --
-- تبدیل قیمت همه محصولات به تومان --
UPDATE
wp_postmeta
SET
meta_value = meta_value / 10
WHERE
meta_key IN(
"_regular_price",
"_price",
"_sale_price"
);
-- خالی کردن کش قیمت محصولات ووکامرس --
DELETE
FROM
`wp_options`
WHERE
(
`option_name` LIKE '_transient_wc_var_prices_%' OR `option_name` LIKE '_transient_timeout_wc_var_prices_%'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment