Woocommerce滑动推车 - 为每个产品添加删除按钮

时间:2014-04-12 19:29:40

标签: javascript php wordpress woocommerce cart

我使用WooCommerce购物车标签。 可以为产品添加删除按钮吗?

enter image description here

2 个答案:

答案 0 :(得分:5)

这样做非常简单:

导航至wp-content/plugins/woocommerce/templates/cart并打开mini-cart.php。在li标记内添加以下代码:

<?php
    echo apply_filters( 'woocommerce_cart_item_remove_link', sprintf('<a href="%s" class="remove" title="%s">&times;</a>', esc_url( $woocommerce->cart->get_remove_url( $cart_item_key ) ), __( 'Remove this item', 'woocommerce' ) ), $cart_item_key );
?>

这将为您的滑动购物车中的每件商品添加一个删除按钮(X)。

你已经完成了。

答案 1 :(得分:1)

至于我,丹尼尔的解决方案不起作用,以下代码完成了这项工作:

echo apply_filters( 'woocommerce_cart_item_remove_link', 
sprintf( '<a href="%s" class="remove" title="%s">&times;</a>', 
esc_url( WC()->cart->get_remove_url( $cart_item_key ) ),
 __( 'Remove this item', 'woocommerce' ) ), $cart_item_key );

请注意WC()->cart代替$woocommerce->cart希望如果以上解决方案无效,这可以帮助其他人:)