How to hide SKU on the cart page?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
3 年 前
Is there an option in admin side to hide SKU on the cart page?
3 年 前
Not in v3.9. This was what someone was refering to on the other post: All these questions have been asked and features added to later versions. In is not possible to come back and fix every version. hence why some people decide to upgrade / or not.

In your case you can manually edit nopCommerce_3.90_Source\Presentation\Nop.Web\Views\Product\ProductTemplate.Simple.cshtml
and remove
                        <!--SKU, MAN, GTIN, vendor-->
                        @Html.Partial("_SKU_Man_GTIN_Ven", Model)
or to get more granualar edit
nopCommerce_3.90_Source\Presentation\Nop.Web\Views\Product\_SKU_Man_GTIN_Ven.cshtml

For any future issues you have you can also look at what future versions have done and incorporate changes - in this case it is really just a setting to control the display that was added in later versions :)
3 年 前
Yidna wrote:
Not in v3.9. This was what someone was refering to on the other post: All these questions have been asked and features added to later versions. In is not possible to come back and fix every version. hence why some people decide to upgrade / or not.

In your case you can manually edit nopCommerce_3.90_Source\Presentation\Nop.Web\Views\Product\ProductTemplate.Simple.cshtml
and remove
                        <!--SKU, MAN, GTIN, vendor-->
                        @Html.Partial("_SKU_Man_GTIN_Ven", Model)
or to get more granualar edit
nopCommerce_3.90_Source\Presentation\Nop.Web\Views\Product\_SKU_Man_GTIN_Ven.cshtml

For any future issues you have you can also look at what future versions have done and incorporate changes - in this case it is really just a setting to control the display that was added in later versions :)


hi. thank you so much for your help.

but how can I remove the sku only in the CART page?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.