如何在WooCommerce中的查看购物车按钮旁边添加&Quot;继续购物(&Quot;)按钮?
我在WooCommerce网站上工作,由于某些原因,我想在将产品添加到购物车后一起显示"继续购物"按钮和"查看购物车"按钮。我找到了wc-cart-unction.php文件,该文件显示输出成功消息以显示消息,但我无法返回查看购物车并通过单次返回$message
继续购物的$Message变量。
提前谢谢。
解决方案
我相信您可以这样做。
function filter_wc_add_to_cart_message_html( $message, $products ) {
$return_to = apply_filters(
'woocommerce_continue_shopping_redirect',
wc_get_raw_referer() ? wp_validate_redirect( wc_get_raw_referer(), false ) : wc_get_page_permalink( 'shop' )
);
$continue = sprintf(
'<a href="%s" class="button wc-forward">%s</a>',
esc_url( $return_to ),
esc_html__( 'Continue shopping', 'woocommerce' )
);
$message .= $continue;
return $message;
};
add_filter( 'wc_add_to_cart_message_html', 'filter_wc_add_to_cart_message_html', 10, 2 );
有关更多详细信息,请查看"wc_add_to_cart_Message_html"挂钩。
相关文章