-1

我想根据重量以可变的数量更改产品的价格。比如白银,由于价格每天都在变化,所以价格将以我插入 1 克白银的数量计算。例如,一个产品是300 克,而1 克白银的价格是2000美元,那么300*2000 = 600,000 美元。白银价格每天都会变化,价格将根据所有产品的价格计算。是否有任何可用的插件,或者如果可以通过一些代码更改我可以做到这一点。帮我解决这个问题。谢谢

4

2 回答 2

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) 并进行价格更新。

于 2016-05-24T13:51:20.553 回答
0

据我所知,没有插件。由于价格每天都在变化,您应该按照 Erik van de Ven 的建议创建一个cronjob任务。有了它,您可以更新存储在数据库或文件中的价格。然后,您的 wordpress 代码可以从该数据库/文件中读取,其中的价格现在应该始终是最新的

于 2016-05-24T11:57:57.623 回答