I am preparing for a new currency in my country. How can I easily divide all the prices from 3.45. All prices have been stored in the mysql table wp_postmeta _wps_price I will not change any of the WordPress plugins that have not got any.
You can get all the products and change the price My example with Wp questions: < / P> $ get_your_products = get_posts (array ('post_type' = & gt; wpsc-product ',' showposts' => 1); foreign ($ get_your_products $ as product) {$ Current_price = get_post_meta ($ product-> id, '_wps_price' is true); $ New_price = $ current_price / (3.45); Update_post_meta ($ Product-> ID, '_wps_price', $ new_price); }
Comments
Post a Comment