X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Removing Weight section in Product details area (https://forum.x-cart.com/showthread.php?t=64913)

aloha1 09-20-2012 11:00 AM

Removing Weight section in Product details area
 
Hello,

I would like to remove where the weight is on the product page.
I do not want the customer to see this.
If someone can let me know what tpl file I need to fix and what line it would be appreciated.
This is foir an installation for X-Cart Gold 4.4.5

Thank you,

Toora Designs 09-20-2012 12:13 PM

Re: Removing Weight section in Product details area
 
In skin/{your_skin}/customer/main/product_details.tpl around line 64
Code:

    {if $product.weight ne "0.00" or $variants ne ''}
      <tr id="product_weight_box"{if $product.weight eq '0.00'} style="display: none;"{/if}>
        <td class="property-name">{$lng.lbl_weight}</td>
        <td class="property-value" colspan="2">
          <span id="product_weight">{$product.weight|formatprice}</span> {$config.General.weight_symbol}
        </td>
      </tr>
    {/if}

replace with
Code:

    {*{if $product.weight ne "0.00" or $variants ne ''}
      <tr id="product_weight_box"{if $product.weight eq '0.00'} style="display: none;"{/if}>
        <td class="property-name">{$lng.lbl_weight}</td>
        <td class="property-value" colspan="2">
          <span id="product_weight">{$product.weight|formatprice}</span> {$config.General.weight_symbol}
        </td>
      </tr>
    {/if}*}


aloha1 09-20-2012 12:43 PM

Re: Removing Weight section in Product details area
 
Thank you very much for your help.

Mona Not 09-25-2014 05:39 AM

Re: Removing Weight section in Product details area
 
Thanks, this also worked in 4.6x Gold Plus


All times are GMT -8. The time now is 05:09 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.