我想根据重量改变产品的价格。如白银,由于价格日常变化所以价格将按我插入1gm银的数量计算。 例如,产品 300gm , 1 gm 白银的价格 2000 ,然后 300 * 2000 = 600,000美元< / strong>即可。白银价格将每日变化,价格将根据所有产品的价格计算。 有没有可用的插件,或者如果可以通过一些代码更改我可以做到这一点。帮我解决这个问题。 感谢
答案 0 :(得分:1)
这是一个解决方案,您可以根据自己的需要进行修改,基本上根据您输入的价格批量更新价格(当前每克价格)。
第1步
在wp-admin
上添加名为“价格更新”的新页面
第2步
在主题名为page-price-update.php
的目录上创建自定义模板,并将以下代码段粘贴到该模板文件
<?php get_header(); ?>
<?php if( is_admin() ) :?>
<form action="<?php echo admin_url('admin-ajax.php'); ?>" method="post" >
<p class="form-row">
<label for="gram_price">Current Price of 1 Gram</label>
<input type="number" name="gram_price" value="" />
</p>
<p class="form-row">
<input type="hidden" name="action" value="bulk_update_price" />
<input type="submit" value="Update Now" />
</p>
</form>
<?php else : ?>
<h3>You need to be an Admin to access this page.!</h3>
<?php endif; ?>
<?php get_footer(); ?>
第3步
将以下代码段放在主题functions.php
function bulk_update_price() {
if( isset( $_POST["gram_price"] ) && is_numeric( $_POST["gram_price"] ) ) {
// get all products
$posts = get_posts( array('post_type'=>'product', 'posts_per_page'=>-1 ) );
if( count( $posts ) > 0 ) {
// iterare through each product
foreach ( $posts as $post ) {
setup_postdata( $post );
wc_setup_product_data( $post );
$product = wc_get_product( $post->ID );
if( $product->has_weight() ) {
// get the current price entered i the form field
$current_price = floatval( $_POST["gram_price"] );
// get the product weight
$weight = $product->get_weight();
// well now set the price
$product->set_price( $weight * $current_price );
}
}
}
}
echo "<h1>Prices updated Successfully.!</h1>";
}
add_action ( 'wp_ajax_bulk_update_price', 'bulk_update_price' );
add_action ( 'wp_ajax_nopriv_bulk_update_price', 'bulk_update_price' );
现在访问该页面(http://your-domain/price-update
)并进行价格更新。
答案 1 :(得分:0)
据我所知,没有插件。 由于价格每天都在变化,你应该像Erik van de Ven建议的那样创建一个cronjob任务。这样您就可以更新存储在数据库或文件中的价格。然后你的wordpress-code可以从那个db / file读取,其中价格现在应该始终是最新的