当前位置: 首页 > 知识库问答 >
问题:

在woocommerce单品页面中添加固定数量的购物车按钮

云凌
2023-03-14

共有1个答案

太叔睿
2023-03-14

它可以很容易地完成一个自定义挂钩功能,显示一个额外的按钮,将添加12个产品在单产品页面上的1点击仅简单产品:

add_action( 'woocommerce_after_add_to_cart_button', 'additional_simple_add_to_cart', 20 );
function additional_simple_add_to_cart() {
    global $product;

    // Only for simple product type
    if( ! $product->is_type('simple') ) return;

    $href = '?add-to-cart=' . esc_attr( $product->get_id() ) . '&quantity=12';
    $class = 'ingle_add_to_cart_button-12 button alt';
    $style = 'display: inline-block; margin-top: 12px;';
    $button_text = __( "Add a case of 12", "woocommerce" );

    // Output
    echo '<br><a rel="no-follow" href="'.$href.'" class="'.$class.'" style="'.$style.'">'.$button_text.'</a>';
}

代码放在您的活动子主题(活动主题)的function.php文件中。

经过测试并起作用。

 类似资料: