gpt4 book ai didi

php - 获取 WooCommerce 中事件选定产品变体的数量

转载 作者:行者123 更新时间:2023-12-01 04:37:26 26 4
gpt4 key购买 nike

我正在(与 Woocommerce 合作)建立一家在线商店,该商店将展示单一和可变产品。在单个产品页面中时,我需要一些输出/文本来取决于单个产品页面中所选产品的库存或缺货。我正在用 PHP 构建这个条件。

对于单一产品来说,这是微不足道的:

$qty = $product->get_stock_quantity();
if ( ( ... ) and ( $qty > 0 ) ) {
...
}

我正在 Hook 'woocommerce_before_add_to_cart_button'

但是,对于可变产品,我只是不知道如何使其发挥作用。在这种情况下,我需要获取选定/事件的变体数量,这必须应对客户端更改页面中的变体的可能性。

这个问题之前已经提出过,但主要是针对所有变体,而不是当前/事件的变体。

如果有人能提供一些线索,我将不胜感激。

最佳答案

获取所选变体库存数量的唯一方法是使用 jQuery/Javascript,因为它主要是客户端(而不是服务器端)的实时事件。

您的问题与您想要执行的操作并不太清楚,因此这里有一个自定义函数,卡在 woocommerce_before_add_to_cart_button 操作 Hook 中,仅针对可变产品。

在该函数中,我将一些数据从 php 传递到 javascript,例如:

  • 针对缺货版本显示的自定义消息(也可以针对“有库存”)
  • 所有有效变体的库存数量。

jQuery 代码检测:

  • 选择了哪个变体(变体 ID),
  • 当前所选变体的库存状态

从那里,这段代码能够:

  • 获取所选变体的库存数量(我不知道您想用它做什么)
  • 当所选版本缺货时显示自定义消息。

在 jQuery 代码中,有一个函数将返回所选变体的库存数量。

这是此代码示例:

add_action( 'woocommerce_before_add_to_cart_button', 'get_selected_variation_stock', 11, 0 );
function get_selected_variation_stock() {
global $product, $wpdb;

// HERE set your custom message
$message_outofstock = __('My custom "out of stock" message');

// Get the visible product variations stock quantity
$variations_data = array();
$child_ids = $product->get_visible_children();
$child_ids = implode( ',',$child_ids );
$results = $wpdb->get_results( "
SELECT p.ID, pm.meta_value as stock_qty
FROM {$wpdb->prefix}posts as p
INNER JOIN {$wpdb->prefix}postmeta as pm ON p.ID = pm.post_id
WHERE p.post_type LIKE 'product_variation'
AND p.ID IN ($child_ids) AND pm.meta_key LIKE '_stock'
" );

foreach( $results as $result ){
// Set in an indexed array for each variation ID the corresponding stock qty
$variations_data[$result->ID] = $result->stock_qty;
}

?>
<script>
jQuery(document).ready(function($) {
var vData = <?php echo json_encode($variations_data); ?>,
stock = '.woocommerce-variation-availability > .stock';

// Function that get the selected variation stock quantity and returns it
function getTheStockQty( a=vData ){
$.each( a, function( index, value ){
if( index == $('input.variation_id').val() )
return value;
});
}

// Once loaded (if a variation is selected by default)
setTimeout(function(){
var stockQty = getTheStockQty();
if( 0 < $('input.variation_id').val() && $(stock).hasClass('out-of-stock')){ // OUT OF STOCK
// Output a custom message for "out of stock"
$(stock).text('<?php echo $message_outofstock; ?>');
// Testing output in the browser JS console
console.log('(1)'+$(stock).html()+' | Stock qty: '+stockQty);
} else if( 0 < $('input.variation_id').val() ) { // IN STOCK
// Testing output in the browser JS console
console.log('(2)'+$(stock).html()+' | Stock qty: '+stockQty);
}
}, 300);

// On live selected variation
$('select').blur( function(){
var stockQty = getTheStockQty();
if( 0 < $('input.variation_id').val() && $(stock).hasClass('out-of-stock')){ // OUT OF STOCK
// Output a custom message for "out of stock"
$(stock).text('<?php echo $message_outofstock; ?>');
// Testing output in the browser JS console
console.log('(1 live)'+$(stock).html()+' | Stock qty: '+stockQty);
} else if( 0 < $('input.variation_id').val() ) { // IN STOCK
// Testing output in the browser JS console
console.log('(2 live)'+$(stock).html()+' | Stock qty: '+stockQty);
}
});
});
</script>
<?php
}

此代码位于事件子主题(或主题)的 function.php 文件中或任何插件文件中。

经过测试并有效

With this code, you get all the necessary base code to customize things just like you want.

关于php - 获取 WooCommerce 中事件选定产品变体的数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47857063/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com