You can't comment out a define.
You would need to find the file (probably tpl_checkout_payment_default.php) and remove or comment out that section.
You may also be able to turn it off in the stylesheet.
You can't comment out a define.
You would need to find the file (probably tpl_checkout_payment_default.php) and remove or comment out that section.
You may also be able to turn it off in the stylesheet.
Ok thanks - I'll have a look around - I'm not so good at PHP but am learning by trial and error lol - if anyone else can directly point me to the place that would be great and save me some hairpulling.
Thanks Stevesh - I didn't realize you couldn't comment out a define.
While you can't comment it out, you can define the text as a zero length string by removing the definitions content.
To do this, change...
...to...PHP Code:define('TEXT_SELECTED_BILLING_DESTINATION', 'Your billing address is shown to the left. The billing address should match the address on your credit card statement. You can change the billing address by clicking the <em>Change Address</em> button.');
you will still have the whitespace left behind, but it might suit your purpose if you have trouble with the other option?PHP Code:define('TEXT_SELECTED_BILLING_DESTINATION', '');
cheers
andrejs
Thank you - now am going to try and find out how to get rid of the actual address and the address change button.
You can add this to your stylesheet:
#checkoutBillto {display:none;}
TY TY TY TY THANK YOU!!!!!!!!
So simple - I can not thank you enough lol!![]()