I want to change the price of the products according to the weight with a variable amount. Such as silver, as the price changes on day to day basis so the price will be calculated with the amount I insert for 1gm silver. For example, a product is of 300gm and the price for 1 gm silver is 2000 bucks then 300*2000 = 600,000 bucks. The silver price will change daily and the price will be calculated according to that for all the products. Is there any plugin available for that or if it is possible with some code change I can do that. Help me out with this issue. Thanks
How to change the price of all the products with a constant variable according the weight of the products in wordpress?
1.9k Views Asked by puneet At
2
There are 2 best solutions below
0

As far as I know, there is no plugin for that. Since the prices change daily, you should create a cronjob task as Erik van de Ven suggested. With that you can update the prices which you store in a database or in a file. Your wordpress-code can then read from that db/file, where the prices should now always be up to date
Here is an solution, which you can modify to your needs, basically what it does is bulk updating the price based on the price you entered ( Current Price per Gram ).
Step 1 Add a new page on
wp-admin
called "Price Update"Step 2 Create a custom template on your theme's directory called
page-price-update.php
and paste the following snippet on that template fileStep 3 Put the following snippet on your theme's
functions.php
Now visit that page (
http://your-domain/price-update
) and do your price update.