2 回答
TA贡献1744条经验 获得超4个赞
wc-cart-functions.php
包含第295行
echo wp_kses( apply_filters( 'woocommerce_cart_totals_coupon_html', $coupon_html, $coupon, $discount_amount_html ), array_replace_recursive( wp_kses_allowed_html( 'post' ), array( 'a' => array( 'data-coupon' => true ) ) ) ); // phpcs:ignore PHPCompatibility.PHP.NewFunctions.array_replace_recursiveFound
因此,要更改链接,您可以使用
function filter_woocommerce_cart_totals_coupon_html( $coupon_html, $coupon, $discount_amount_html ) {
$coupon_html = $discount_amount_html . '<a href="https://www.stackoverflow.com">My url</a>';
return $coupon_html;
}
add_filter( 'woocommerce_cart_totals_coupon_html', 'filter_woocommerce_cart_totals_coupon_html', 10, 3 );
要更改购物车中的表格单元格,您可以编辑第35-38cart/cart-totals.php
行的文件
- 2 回答
- 0 关注
- 128 浏览
添加回答
举报