wordpress 在Woocommerce可变产品中设置默认的最高价格的变化

hjzp0vay  于 2022-11-22  发布在  WordPress
关注(0)|答案(2)|浏览(261)

我有很多产品在我的woocommerce安装变化。没有一个是预先选定的默认用户浏览到任何产品页面。
手动选择它们将是一项乏味的工作。此外,新产品和变体每天使用SQL脚本自动导入。
我想有预先选择的产品变化与最高价格的任何用户浏览到任何产品页面有可变的产品。
如何才能做到这一点?

sd2nnvve

sd2nnvve1#

这是一个自动化的解决方案,它将在每次客户调用/浏览可变产品时完成这项工作。
可变产品将使用具有最高价格的默认变体进行更新。
这将只做一次,因为我设置了一个自定义后 meta键/值,每次一个变量产品已更新。
代码:

add_action( 'template_redirect', 'set_default_variation_job' );
function set_default_variation_job() {
    if ( ! is_product() || is_admin() ) return;

    global $wpdb, $post;

    // Get an instance of the WC_Product object
    $product = wc_get_product($post->ID);
    $product_id = $post->ID;

    // Check if default variation has been updated, if yes we exit
    if( get_post_meta( $product_id, '_default_variation_updated', true ) ) return;

    // Only for variable products
    if ( $product->is_type( 'variable' ) ) {

        $max_price = $product->get_variation_price('max', true); // Get Max variation price

        // SQL Query: Get the variation ID of the  max variation price
        $result = $wpdb->get_col("
            SELECT pm.post_id FROM {$wpdb->prefix}postmeta as pm
            INNER JOIN {$wpdb->prefix}posts as p ON pm.post_id = p.ID
            WHERE p.post_type LIKE 'product_variation' AND p.post_parent = $product_id
            AND pm.meta_key LIKE '_price' and pm.meta_value = $max_price
        ");
        $variation_id= reset($result); // get the first variation ID as a string

        // Get an instance of the WC_Product_Variation object
        $variation = wc_get_product($variation_id);
        $default_attributes = array();

        // Loop through this variation attributes and format them
        foreach( $variation->get_variation_attributes() as $key => $value ){
            $taxonomy = str_replace( 'attribute_', '', $key );
            $default_attributes[ $taxonomy ] = $value;
        }

        // Set the default variation attributes in the Variable product
        $product->set_default_attributes( $default_attributes );
        // Set a meta data flag to avoid update repetitions
        update_post_meta( $product_id, '_default_variation_updated', '1' );
        $product->save(); // Save the data
    }
}
  • 代码进入活动子主题(活动主题)的function.php文件。*

测试和工程。

js4nwp54

js4nwp542#

转到文件woocommerce/templates/single-product/add-to-cart/variable.php并添加以下行:

'selected'   => $options[0],

到函数wc_dropdown_variation_attribute_options()。这将预先选择产品显示页面上的第一个变量。

相关问题