Created
June 8, 2022 14:05
-
-
Save cpaul007/8b56e65a28db777db7041eace9262082 to your computer and use it in GitHub Desktop.
Change place order text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php //* do not include this line | |
add_filter( 'woocommerce_order_button_text', 'ouwoo_custom_place_order_text'); | |
function ouwoo_custom_place_order_text( $button_text ) { | |
$button_text = "ENTERYOURTEXT"; | |
return $button_text; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment