VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: zvezdomir on May 11, 2014, 13:22:16 PM

Title: How to remove SHIPMENT ADDRESS?
Post by: zvezdomir on May 11, 2014, 13:22:16 PM
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
Title: Re: How to remove SHIPMENT ADDRESS?
Post by: GJC Web Design on May 11, 2014, 17:56:32 PM
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]
Title: Re: How to remove SHIPMENT ADDRESS?
Post by: jenkinhill on May 11, 2014, 18:17:40 PM
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
Title: Re: How to remove SHIPMENT ADDRESS?
Post by: zvezdomir on May 11, 2014, 20:59:18 PM
Thank you guys! Problem solved  :)