Skip to content
Get Bricks

Filter: bricks/woocommerce/cart_proceed_label

Filter: bricks/woocommerce/cart_proceed_label

Section titled “Filter: bricks/woocommerce/cart_proceed_label”

Allows you to modify the text of the “Proceed to checkout” button in the WooCommerce Cart element.

  • $label (string): The button text. Default is “Proceed to checkout”.
add_filter( 'bricks/woocommerce/cart_proceed_label', function( $label ) {
return 'Go to Checkout';
} );