Skip to content

Instantly share code, notes, and snippets.

@dexit
Forked from Anshu-wwc/edit-thank-you-page.php
Created December 16, 2024 16:12
Show Gist options
  • Save dexit/888e8400534d78f5d667b1b9b665ccc8 to your computer and use it in GitHub Desktop.
Save dexit/888e8400534d78f5d667b1b9b665ccc8 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