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.
Parameters
Section titled “Parameters”$label(string): The button text. Default is “Proceed to checkout”.
Example usage
Section titled “Example usage”add_filter( 'bricks/woocommerce/cart_proceed_label', function( $label ) { return 'Go to Checkout';} ); Was this page helpful?