X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (X-Cart 5) (https://forum.x-cart.com/forumdisplay.php?f=56)
-   -   Hiding product weights and inventory quantities (https://forum.x-cart.com/showthread.php?t=70518)

More-Japan 11-13-2014 08:58 AM

Hiding product weights and inventory quantities
 
By default X-Cart 5 shows all product weights and inventory quantities. I would like to hide this from the storefront. Anyone know how this can be done? Is there a module or somewhere in the template files I can hide the code that displays these values?

SignTorch 11-17-2014 01:39 AM

Re: Hiding product weights and inventory quantities
 
there may be a better way, but this worked for me

to hide the weight, using custom skins module

copy skins\default\en\product\details\common_attributes \common.product-attributes.weight.tpl

to skins\custom_skin\default\en\product\details\commo n_attributes\common.product-attributes.weight.tpl

and comment out the template code

Code:

{*
<li IF="!getWeight()=0">
  <div><strong>{t(#Weight#)}</strong></div>
  <span>{formatWeight(getWeight())}</span>
</li>
*}


I'm not using inventory, so I'd guess for inventory maybe do the same with this template

skins\default\en\product\details\parts\common.stoc k.tpl

More-Japan 11-17-2014 02:43 PM

Re: Hiding product weights and inventory quantities
 
Thank you. I was able to hide the product quantities through the template files.

Hanypa 02-21-2015 08:52 PM

Re: Hiding product weights and inventory quantities
 
You can also do it with custom css in the back of xcart with

Code:

/* Hide quantity available */
.product-items-available {
display: none;
}
/* Hide weight in check out */
.item-weight {
display: none;
}

/* Hide weight & SKU in item description */
.product-details-tabs {
display: none;
}


This way you don't have to modify any files, which makes upgrading a little easier.

minfinger 03-07-2015 07:12 PM

Re: Hiding product weights and inventory quantities
 
Hanypa,

Your way works, but that hides the product description too. I'm interersted in only hiding the Weight & SKU.

Perhaps a combination of Custom Skin and your CSS?

Or is there a way to build a Module to do this?

Wing Fat 08-01-2015 07:10 PM

Re: Hiding product weights and inventory quantities
 
Quote:

Originally Posted by minfinger
Hanypa,

Your way works, but that hides the product description too. I'm interersted in only hiding the Weight & SKU.

Try this instead:
Code:

/* Hide weight & SKU in item description */
.extra-fields {
    display: none;
}


razortw 08-05-2015 12:18 AM

Re: Hiding product weights and inventory quantities
 
Quote:

Originally Posted by minfinger
Hanypa,

Your way works, but that hides the product description too. I'm interersted in only hiding the Weight & SKU.

Perhaps a combination of Custom Skin and your CSS?

Or is there a way to build a Module to do this?

There is no need in editing templats.
Just add this to 'Custom CSS':
Code:

.product-details .extra-fields {
  display: none;
}


Oren 03-09-2016 11:07 AM

Re: Hiding product weights and inventory quantities
 
Quote:

Originally Posted by razortw
There is no need in editing templats.
Just add this to 'Custom CSS':
Code:

.product-details .extra-fields {
  display: none;
}


This did not work for me with version 5.2.13.

Also, the weight also appears in the cart, and I'd like to hide it there as well. Any idea how to do that?

minfinger 03-11-2016 04:22 AM

Re: Hiding product weights and inventory quantities
 
Idk what to tell you, I just upgraded the site and mine is working fine.

Oren 03-12-2016 02:44 AM

Re: Hiding product weights and inventory quantities
 
It works now. Not sure what was the problem. But the shopping cart still shows weight. How do I hide it from there as well?


All times are GMT -8. The time now is 12:01 PM.

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