如何在woommerce结帐页面上添加删除产品图标(x)?

时间:2017-07-03 03:33:06

标签: woocommerce

我想在woommerce结帐页面产品上添加删除产品图标(x),因为我要将我的用户直接发送到结帐页面并避开购物车页面。所以我想要的是用户仍然可以选择删除他们不想要的任何产品。

感谢。 佩佩

1 个答案:

答案 0 :(得分:0)

Add the following code to review-order.php in <thead> and <tbody> sections

<thead>

<tr>

<th class="product-remove"><?php _e( 'Remove', 'woocommerce' ); ?></th>

</tr>

</thead>

<tbody>

<td class="product-remove">

<?php

echo apply_filters( 'woocommerce_cart_item_remove_link', sprintf(

'<a href="%s" class="remove" aria-label="%s" data-product_id="%s" data-product_sku="%s">&times;</a>',

esc_url( WC()->cart->get_remove_url( $cart_item_key ) ),

__( 'Remove this item', 'woocommerce' ),

esc_attr( $product_id ),

esc_attr( $_product->get_sku() )

), $cart_item_key );

?>

</tbody>