How to correctly add your message to the “Thank you” page? Woocommerce 3
Clash Royale CLAN TAG #URR8PPP How to correctly add your message to the “Thank you” page? Woocommerce 3 Need add custom message after "Thank you. Your order has been received.". A variable has been added to my message. It contains the percentage of the total amount of the order. In general, I think that this is a working option, but if there are errors, please write the correct answer. add_filter('woocommerce_thankyou_order_received_text', 'woo_change_order_received_text', 10, 2 ); function woo_change_order_received_text( $str, $order ) { // Get order total $order_total = $order->get_total(); $percent = get_option( 'wc-custom-percent' ); // Percentage $order_saving = (float)($percent * $order_total / 100); // Bonus amount $new_str = $str . ' You participate in the bonus program, your bonus interest from this order is' . $order_saving . ' euros. <a href="#">Learn more about the bonus program.</a>...