Product Or Item Number?

Is there a feature that can be turned on that adds a product number or item number to each product?

Can't find it in the admin, can't find an add-on.

Is there such a thing?

Thanks

Please, clarify in more detail - what do you mean by 'product number' or 'item number'?

Is there a feature that can be turned on that adds a product number or item number to each product?

Can't find it in the admin, can't find an add-on.

Is there such a thing?

Do you want to display Product ID of each product on the Product details page in the store-front?

Or number of items in stock?

Or number of items in stock?

In this case please use the Settings -> Appearance -> Show number of available products setting

Hi, what I mean is the item number. Each product is assigned a number in the system.

https://www.etsy.com/listing/250766878/parks-and-rec-ron-swanson-meat-cutting?ref=shop_review
Like on etsy.com this would be the item (product) number 250766878.
Or on amazon.com this would be the number B004TFIR52.
http://smile.amazon.com/gp/product/B004TFIR52/ref=s9_al_gw_g193_i2?pf_rd_m=ATVPDKIKX0DER&pf_rd_s=desktop-2&pf_rd_r=0AW6ZYQT9D0A1EM91PK3

For example, if you want to display product ID under the SKU on the product details page, please open the design/themes/YOUR_THEME/templates/common/product_data.tpl and add:

    {if $details_page}}

{(“product_id_label”)}:
{$product.product_id}

{/if}
after this part of code

    {if $show_sku}


{
(“sku”)}:
{$product.product_code}

{/if}
Then add the product_id_label language variable. clear cache and check the result

B004TFIR52 seems to be a product code, it is displayed by default.

To display product ID you can use eComLabs' solution.

B004TFIR52 seems to be a product code, it is displayed by default.

To display product ID you can use eComLabs' solution.

Amazon has different types of product codes:

http://www.amazon.com/gp/seller/asin-upc-isbn-info.html

May be it is required to add additional one to the default SKU field

For example, if you want to display product ID under the SKU on the product details page, please open the design/themes/YOUR_THEME/templates/common/product_data.tpl and add:

    {if $details_page}}
        
{__("product_id_label")}: {$product.product_id}
{/if}
after this part of code

    {if $show_sku}
        
{__("sku")}: {$product.product_code}
{/if}
Then add the product_id_label language variable. clear cache and check the result

Added the code to the file. Not sure about this last part product_id_label. I go to

12134.com/admin.php?dispatch=languages.translations

Click +, put in product_id_label in Language variable, what do I put in the Value?

Sorry, very new to this.

Added the code to the file. Not sure about this last part product_id_label. I go to

12134.com/admin.php?dispatch=languages.translations

Click +, put in product_id_label in Language variable, what do I put in the Value?

Sorry, very new to this.

You should just specify the name for the item number (UPC, EAN, ISBN, ASIN or anything else)

It works, but is there a way for the system to generate this? Randomly or in order? We can't rely on vendors to do this, plus what if 2 vendors have the same number.

It works, but is there a way for the system to generate this? Randomly or in order? We can't rely on vendors to do this, plus what if 2 vendors have the same number.

I am afraid add code modifications are required. If you want to have unique SKU, there were several modules on the marketplace

Thank you, decided to order this with some changes
http://marketplace.cs-cart.com/add-ons/site-management/product-code-generator-addon.html

Thank you for the information. Please share your experience here

My cs-cart version is 4.7 Ult

I work with CSV export/import files and need to know Product ID to apply combinations. I just need to display product ID near SKU in admin side. How to display it?

I did it as it shown below but nothing happen.

Please advise.

Thank you.

For example, if you want to display product ID under the SKU on the product details page, please open the design/themes/YOUR_THEME/templates/common/product_data.tpl and add:

    {if $details_page}}
        
{__("product_id_label")}: {$product.product_id}
{/if}
after this part of code

    {if $show_sku}
        
{__("sku")}: {$product.product_code}
{/if}
Then add the product_id_label language variable. clear cache and check the result

The mentioned solution is for store-front. Where do you want to show product ID - on the manage products or update product page?

Why don't you just export your product first and include the product_id in your exported data. You can then use it as you need. But note that imports are "keyed" on the product_code, not the product_id. You might want to review this thread: https://forum.cs-cart.com/topic/23225-import-product-combinations/#:~:text=In%20order%20to%20import%20option,product%20options%20will%20be%20created.

The mentioned solution is for store-front. Where do you want to show product ID - on the manage products or update product page?

I would like to display it at the back-end (or how it is correct - where I do changes, edit and other actions, look like manage product page).

I was advised to use product link to see product id. But more comfortable it will be when product id shown in item manage page.

Thank you.