WooCommerce Checkoutページにカート編集ボタンを追加/Storefront

- WooCommerce -
2023.08.26
woocommerce/ウーコマース

WooCommerceの無料テーマ「Storefront」には、Checkoutページから直感的にカートページに戻るすべがないので、これ↓を追加したかった。

woocommerce checkoutページにカート編集リンク

functions.phpへ以下貼り付けて保存すると可能です。

functions.php// Checkoutページに"Edit cart"ボタン設置
function bbloomer_edit_cart_checkout() {
    echo '<button class="single_add_to_cart_button button alt wp-element-button"><a style="color: white;" href="' . wc_get_cart_url() . '">Edit Cart</a></button>';
}
add_action( 'woocommerce_checkout_before_order_review', 'bbloomer_edit_cart_checkout' );

button要素にベタ書きされているボタンのクラスやスタイルにご注意ください。

参考Business Bloomer: WooCommerce: How to Customize Checkout For Conversions

↑TOP