I wish to display at random one of several different lines of text on my website's "order processing" screen (presented before the user is taken to PayPal).
I'm not at all technical, but the relevant (I think) part of the php file (which in the address bar is https://www.mywebsite.com/?eStore_checkout=process&eStore_gateway=paypal) is ...
function eStore_redirector_body() {
echo '<div class="content"><p>';
if ( !isset( $_SESSION['eStore_cart'] ) || empty( $_SESSION['eStore_cart'] ) ) {
echo 'Many thanks for your order';
echo '</p>
</div>
What I'd like is to break the monotony and for customers instead to see e.g. "Many thanks for your order" or "Thanks a million for your order" or any number of other lines of text that I can come up with.
Any pointers in the right direction would be much appreciated.