Для обработки вариантов продукта (для переменных продуктов) это намного сложнее и требует добавления некоторого кода JavaScript / jQuery.
У меня есть отдельные ограничения параметров продукта, от основной функции, в пользовательской условной функциии у вас есть выбор между двумя способами:
1) Вы можете использовать ограничения идентификаторов продуктов:
// PRODUCT IDs based ::: Conditional function
function enable_additional_add_to_cart_button( $product_id ) {
// HERE define your Product Ids in the array
$product_ids = array(37, 40, 53);
return in_array( $product_ids, $product_id ) ? true : false;
}
2) Или вы можете использовать ограничения категории продуктов:
// PRODUCT CATEGORY based ::: Conditional function
function enable_additional_add_to_cart_button( $product_id ) {
// HERE define your Product Category terms in the array (can be term Ids, names or slugs)
$terms = array('t-shirts', 'socks', 'glasses');
return has_term( $terms, 'product_cat', $product_id ) ? true : false;
}
Ниже приведена основная функция , которая отображает дополнительную кнопку добавления в корзину и работает с одной из приведенных выше условных функций.
// Additional add to cart button with fixed bulk quantity
add_action( 'woocommerce_after_add_to_cart_button', 'additional_add_to_cart_button', 20 );
function additional_add_to_cart_button() {
global $product;
if( ! enable_additional_add_to_cart_button( $product->get_id() ) ) return;
$qty = 12;
$href = '?add-to-cart=' . esc_attr( $product->get_id() ) . '&quantity='.$qty;
$class = 'single_add_to_cart_button-12 button alt';
$style = 'display: inline-block; margin-top: 12px;';
$btn_txt = __( "Add a case of 12", "woocommerce" );
## ---------------------- For non variable products ----------------------- ##
if( ! $product->is_type('variable') ) :
// Output
echo '<br><a href"'.$href.'"= rel="no-follow" class="'.$class.'" style="'.$style.'">'.$btn_txt.'</a>';
## ---------- For variable products (handling product variations) --------- ##
else :
// Output
echo '<br><a rel="no-follow" class="'.$class.'" style="'.$style.'">'.$btn_txt.'</a>';
$data = array();
// Loop through available variations data
foreach( $product->get_available_variations() as $variation_data ){
if( $variation_data['is_in_stock'] && $variation_data['is_purchasable'] ) {
$variation_id = $variation_data['variation_id'];
$attributes_str = '';
// Loop through variation attributes
foreach ( $variation_data['attributes'] as $attribute_taxonomy => $term_slug ) {
$attributes_str .= '&'.$attribute_taxonomy.'='.$term_slug;
}
// Set product attributes pairs for variations
$data[$variation_id] = $href . '&variation_id=' . $variation_id . $attributes_str;
}
}
?>
<script type="text/javascript">
jQuery(function($){
var a = <?php echo json_encode($data); ?>, b = '.single_add_to_cart_button-12',
c = 'wc-variation-selection-needed', d = 'disabled',
f = 'form.variations_form', h = $(c).attr('href'),
s = '.variations select', i = 'input.variation_id';
// On show and hide variation event
$(f).on('show_variation', function() {
var found = false;
$.each(a, function(j,k){
if( $(i).val() == j ) {
found = true;
if( $(b).hasClass(c) && $(b).hasClass(d) )
$(b).removeClass(c).removeClass(d).attr('href',k);
}
});
if( ! found && ! ( $(b).hasClass(c) && $(b).hasClass(d) ) )
$(b).addClass(c).addClass(d).removeAttr("href");
}).on('hide_variation', function() {
if( ! ( $(b).hasClass(c) && $(b).hasClass(d) ) )
$(b).addClass(c).addClass(d).removeAttr("href");
});
});
</script>
<?php
endif;
}
Код входит в функциюФайл .php вашей активной дочерней темы (или активной темы).Проверено и работает.