VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: websmith on October 26, 2016, 15:22:40 PM

Title: Remove payment fee from View Invoice Page
Post by: websmith on October 26, 2016, 15:22:40 PM
VM 3.0.18
Joomla 3.6.2

After placing an order the customer can view the details of the order. On this info page at the bottom it shows Shipment fee and payment fee. Payment fee is unnecessary and Id like to remove that as we dont charge payment fees.

Id also like to shorten the email input display, as very long emails push the right side info off the screen. I believe its 181 characters wide and I cant find where to make these css changes.

Ive attached a screen cap for better clarification. Thanks.
Title: Re: Remove payment fee from View Invoice Page
Post by: Jörgen on October 27, 2016, 00:19:44 AM
Hello

The first e-mail issue could probably be adjusted with CSS. Check with firebug and test.

Removing the payment could be done by overriding this file:
templates/your_template_name/html/com_virtuemart/orders/details_items.php (http://templates/your_template_name/html/com_virtuemart/orders/details_items.php)

Look for COM_VIRTUEMART_ORDER_PRINT_PAYMENT and You will see the section that You should remove.

regards

Jörgen @ Kreativ Fotografi
Title: Re: Remove payment fee from View Invoice Page
Post by: jenkinhill on October 27, 2016, 10:00:26 AM
To shorten the email display, something like this may work for a text container:
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px; (or whatever works for you)