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
}
}
2条答案
按热度按时间sd2nnvve1#
这是一个自动化的解决方案,它将在每次客户调用/浏览可变产品时完成这项工作。
可变产品将使用具有最高价格的默认变体进行更新。
这将只做一次,因为我设置了一个自定义后 meta键/值,每次一个变量产品已更新。
代码:
测试和工程。
js4nwp542#
转到文件
woocommerce/templates/single-product/add-to-cart/variable.php
并添加以下行:到函数
wc_dropdown_variation_attribute_options()
。这将预先选择产品显示页面上的第一个变量。