Last active
September 1, 2021 13:43
-
-
Save hamidrezayazdani/9d9402115f5facab29ff437879ffaabb to your computer and use it in GitHub Desktop.
تبدیل قیمت کلیه محصولات ووکامرس از ریال به تومان
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- توجه: حتما قبل از اجرای این کد، از دیتابیس نسخۀ پشتیبان تهیه کنید -- | |
-- وارد فضای هاست خود شده و 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