- Posts: 190
- Thank you received: 0
Why remove Total label from carts ?
- codewarrior
-
Topic Author
- Offline
Less
More
14 years 3 weeks ago - 14 years 3 weeks ago #63848
by codewarrior
Why remove Total label from carts ? was created by codewarrior
Hi,
in product/cart.php why having restricted label HIKASHOP_TOTAL to Whishlist ?
Regular carts have no more "Total" label
Please, could it be possible to retablish it, to avoid view customisations ?
Thankes
in product/cart.php why having restricted label HIKASHOP_TOTAL to Whishlist ?
Regular carts have no more "Total" label
Code:
if($this->params->get('type','cart') == 'wishlist'){
?>
<td class="hikashop_cart_module_product_total_title">
<?php echo JText::_('HIKASHOP_TOTAL'); ?>
</td>
<?php } ?>
Please, could it be possible to retablish it, to avoid view customisations ?
Thankes
Last edit: 14 years 3 weeks ago by codewarrior.
Please Log in or Create an account to join the conversation.
14 years 3 weeks ago #63993
by nicolas
Replied by nicolas on topic Re: Why remove Total label from carts ?
That's not normal.
The line:
if($this->params->get('type','cart') == 'wishlist'){
should be:
if($this->params->get('type','cart') != 'wishlist'){
We'll update that on our end.
The line:
if($this->params->get('type','cart') == 'wishlist'){
should be:
if($this->params->get('type','cart') != 'wishlist'){
We'll update that on our end.
The following user(s) said Thank You: codewarrior
Please Log in or Create an account to join the conversation.
- codewarrior
-
Topic Author
- Offline
Less
More
- Posts: 190
- Thank you received: 0
14 years 3 weeks ago #64067
by codewarrior
Replied by codewarrior on topic Re: Why remove Total label from carts ?
Thanks Nicolas,
but there is an undesired <td> </td> before.
'HIKASHOP_TOTAL' and the price are displayed on the wrong column at the right.
but there is an undesired <td> </td> before.
'HIKASHOP_TOTAL' and the price are displayed on the wrong column at the right.
Please Log in or Create an account to join the conversation.
14 years 3 weeks ago #64069
by nicolas
Replied by nicolas on topic Re: Why remove Total label from carts ?
Yes, we'll fix that too.
The following user(s) said Thank You: codewarrior
Please Log in or Create an account to join the conversation.
Time to create page: 0.150 seconds