Page 1 of 1

Help Need To remove the sku tab on the invoicing

Posted: 21 May 2021, 12:37
by s4evision
Hi All

Please help me i want to remove the sku tab or replace it with somthing else (please see attached) my client really doesnt want it.

Thanks in advance for any help.
Eugene Viviers

https://imgur.com/2tcYReZ

Re: Help Need To remove the sku tab on the invoicing

Posted: 22 May 2021, 11:57
by Jan
Hi, you can override the following layout file:

components/com_phocacart/layouts/order.php

for example: line cca 607

Code: Select all

$p[] = '<td>'.JText::_('COM_PHOCACART_SKU').'</td>';
line cca 647

Code: Select all

$p[] = '<td>'.$v->sku.'</td>';
...

Jan

Re: Help Need To remove the sku tab on the invoicing

Posted: 22 May 2021, 19:50
by s4evision
Hi Jan

thank you so much i really appreciate it.

thanks.

Re: Help Need To remove the sku tab on the invoicing

Posted: 24 May 2021, 18:07
by Jan
Ok