Admin Email Address
These instructions are intended for those who are proficient in theme development. The relevant tutorials on developing & customising themes can be found on wordpress.org. If this is beyond you, we do offer a competitively-priced theme development service starting at £33 per hour. Please contact us for further details.
By default eShop sends an unformatted copy of the transaction to the email address set up for that gateway. You can change this address or add additional email address by adding the following function to your theme’s functions.php file:
add_filter('eshop_gateway_details_email','my_gateway_email');
function my_gateway_email($array){
$array[]='Your Email Address';
return $array;
}
Note: This is only suitable for eShop 5.7.4 or above.

FlipFlop 3.0