Hello,
I’m using STARHOTEL WP THEME.
When customers submitted a reservation form, they go to message page ‘thank you for reservation…’ And stay in message page. But I want customers to go back hotel page. So that I want to add a ‘GO BACK’ link.
// Main messages
if (wp_mail($recipient, $subject, $email_content))
{
echo ‘’ . esc_html__(“Reservation sent successfully!”, ‘starhotel’ ) . ‘
’;
echo ‘’ . esc_html__(“Thank you, your reservation has been submitted to us and we’ll contact you as quickly as possible to complete your booking.”, ‘starhotel’ ) . ‘
’;
I WANT TO ADD a GO BACK link to here with h2 style.
}
else
{
echo ‘’ . esc_html__(“Oops! Something went wrong and we couldn’t send your reservation.”, ‘starhotel’ ) . ‘
’;
}
}
else
{
echo ‘’ . esc_html(“There was a problem with your submission, please try again.”, ‘starhotel’ ) . ‘
’;
}