提问者:小点点

在WooCommerce中添加到购物车后重新标记“添加到购物车”按钮


我想重新标记我的添加到购物车按钮后,点击它,并添加一个项目到购物车添加一个以上的购物车。

这可能吗?

我有儿童主题功能。php带有第二个“转到购物车”按钮,这是可行的。

但是我不知道如何解决一个商品被添加到购物车后的重新标签(商店只卖一个不同尺寸的商品)。我希望我说得很清楚。

这是我的密码:

add_filter( 'woocommerce_product_add_to_cart_text', 
'customizing_add_to_cart_button_text', 10, 2 );
add_filter( 'woocommerce_product_single_add_to_cart_text', 
'customizing_add_to_cart_button_text', 10, 2 );
function customizing_add_to_cart_button_text( $button_text, $product ) 
{

if ( WC()->cart->get_cart_contents_count() ) 
return __( 'Add one more to cart', 'woocommerce' );
} else {
return __( 'Add to cart ', 'woocommerce' );
}

共3个答案

匿名用户

更新:下面您将找到使此重新标记工作的正确条件:

add_filter( 'woocommerce_product_add_to_cart_text', 'customizing_add_to_cart_button_text', 10, 2 );
add_filter( 'woocommerce_product_single_add_to_cart_text', 'customizing_add_to_cart_button_text', 10, 2 );
function customizing_add_to_cart_button_text( $button_text, $product )
{
    $is_in_cart = false;

    foreach ( WC()->cart->get_cart() as $cart_item )
       if ( $cart_item['product_id'] == $product->get_id() ) {
           $is_in_cart = true;
           break;
       }

    if( $is_in_cart )
        $button_text = __( 'Add one more to cart', 'woocommerce' );

    return $button_text;
}

代码进入函数。活动子主题(或主题)或任何插件文件中的php文件。

测试和工作。

如果您启用了Ajax,对于存档页面(如商店页面或产品类别页面)上的NON变量产品,并且您希望获得此实时事件,您也应该添加以下内容:

add_action('wp_footer','custom_jquery_add_to_cart_script');
function custom_jquery_add_to_cart_script(){
    if ( is_shop() || is_product_category() || is_product_tag() ): // Only for archives pages
        $new_text = __( 'Add one more to cart', 'woocommerce' );
        ?>
            <script type="text/javascript">
                // Ready state
                (function($){
                    $('a.add_to_cart_button').click( function(){
                        $this = $(this);
                        $( document.body ).on( 'added_to_cart', function(){
                            $($this).text('<?php echo $new_text; ?>');
                            console.log('EVENT: added_to_cart');
                        });
                    });

                })(jQuery); // "jQuery" Working with WP (added the $ alias as argument)
            </script>
        <?php
    endif;
}

代码进入函数。活动子主题(或主题)或任何插件文件中的php文件。

测试和工作。

匿名用户

添加添加到购物车。php到您的主题/woocommerce/loop文件夹。然后在sprintf按钮函数之前添加下面的代码。

global $woocommerce;

$items = $woocommerce->cart->get_cart();
$inCart = false;
foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) {
   if($values['product_id'] == $product->id && $values['quantity'] > 1){
       $inCart = true;
       break;
   }
}

$buttonText = $inCart?'add one more':'add to cart';

将Sprintf函数中的最后一行更改为

esc_html( ( !empty( $product_addons ) )?'Select options':$buttonText )

如果打开Ajax购物车,可能需要对其进行优化

匿名用户

这应该行得通

 // Part 1
    // Single Product Page Add to Cart
     
    add_filter( 'woocommerce_product_single_add_to_cart_text', 'custom_add_cart_button_single_product', 9999 );
     
    function custom_add_cart_button_single_product( $label ) {
       if ( WC()->cart && ! WC()->cart->is_empty() ) {
          foreach( WC()->cart->get_cart() as $cart_item_key => $values ) {
             $product = $values['data'];
             if ( get_the_ID() == $product->get_id() ) {
                $label = 'Added to Cart';
                break;
             }
          }
       }
       return $label;
    }
     
    // Part 2
    // Loop Pages Add to Cart
     
    add_filter( 'woocommerce_product_add_to_cart_text', 'custom_add_cart_button_loop', 9999, 2 );
     
    function custom_add_cart_button_loop( $label, $product ) {
       if ( $product->get_type() == 'simple' && $product->is_purchasable() && $product->is_in_stock() ) {
          if ( WC()->cart && ! WC()->cart->is_empty() ) {
             foreach( WC()->cart->get_cart() as $cart_item_key => $values ) {
                $_product = $values['data'];
                if ( get_the_ID() == $_product->get_id() ) {
                   $label = 'Added to Cart';
                   break;
                }
             }
          }
       }
       return $label;
    }