-
-
Save dexit/888e8400534d78f5d667b1b9b665ccc8 to your computer and use it in GitHub Desktop.
Edit Thank you page text : woocommerce
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 | |
// Thank you page text | |
add_filter('woocommerce_thankyou_order_received_text', 'woo_change_order_received_text', 10, 2 ); | |
function woo_change_order_received_text( $str, $order ) { | |
// Text to change | |
$new_str = 'Thank you for buying, Order received successfully.<br />'; | |
$new_str .= 'To Access your dashboard click here <a class="elementor-button-link elementor-button elementor-size-sm" role="button" href="/dashboard"> | |
<span class="elementor-button-content-wrapper"> | |
<span class="elementor-button-text">My Dashboard</span></span></a>'; | |
return $new_str; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment