Hi,
I really need to remove SHIPMENT ADDRESS. Here screenshot: http://awesomescreenshot.com/0842s9wm84. I searched the forum and tried everything I found from it, but nothing works.
Joomla! 2.5.19
virtuemart 2.5
Best Regards
virtuemart 2.5 ??????
with no live site of course can't give specific help but at least two ways
1. by css - on a standard template
.billto-shipto .width50.floatleft:nth-child(2) {
display: none;
}
.billto-shipto .width50 {
width:100%;
}
2. otherwise just over ride template templates/YOUR_TEMPLATE/html/com_virtuemart/cart/default_pricelist.php
line 20
<div class="billto-shipto">
<div class="width100 floatleft">
line 52
<div class="width50 floatleft" style="display:none;">
[attachment cleanup by admin]
VM2.5.x were development versions for testing purposes only, so you are recommended to update to VM2.6.0a - as long as your PHP version is greater then 5.3.10.
http://forum.virtuemart.net/index.php?topic=79799.0
Thank you guys! Problem solved :)