Skip to content

Instantly share code, notes, and snippets.

@Anshu-wwc
Created March 29, 2022 12:16
Show Gist options
  • Save Anshu-wwc/0b0a0f7c5eecdfec66629c4ad4618560 to your computer and use it in GitHub Desktop.
Save Anshu-wwc/0b0a0f7c5eecdfec66629c4ad4618560 to your computer and use it in GitHub Desktop.
Edit Thank you page text : woocommerce
<?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