我在此处点击了此链接:Woocommerce, How to edit the "added to cart" message将我的“结帐”链接调整为“继续购物”
$message = sprintf( '%s <a href="%s" class="button"> %s</a> <a href="%s" class="button">%s</a>',
esc_html( $added_text ),
esc_url( wc_get_page_permalink( 'shop' ) ), /* onclick="history.go(-1)" */
esc_html__( 'Continue Shopping...', 'woocommerce' ),
esc_url( wc_get_page_permalink( 'cart' ) ),
esc_html__( 'View Cart', 'woocommerce' ));
return $message;
我已将用户发送到wc_get_page_permalink( 'shop' )
-返回首页。
无论如何,我可以将用户带回到他们来自的页面吗?我以为我可以使用history.go(-2)
,但这没用。