Change Woocommerce order button page on particular page
You can try the following add_filter( ‘woocommerce_order_button_text’, ‘woo_custom_order_button_text’, 999 ); function woo_custom_order_button_text() { if( is_page(37802)) { // only run if page ID is 37802 return __( ‘Join The Retreat’, ‘woocommerce’ ); } return __( ‘Join The Founders Circle’, ‘woocommerce’ ); } UPDATE The conditional logic is_page() does not work. WHY Because on the checkout page, … Read more