Hi,
How can I hide the billing and shipping addresses (and associated buttons) from the checkout page?
On my site one can safely assume that the user will always have recorded a billing address and a shipping address before reaching the checkout page.
Configuration:
- VirtueMart 3.0.6.2
- Joomla! 3.4.1
- PHP 5.5.22
Thanks in advance,
Thomas
You can use template overrides to remove all related code, or just use css to hide the relevent div.
eg in default VM use .billto-shipto {display:none;} as a css override.
That did the trick; thanks a lot!