Hiding Free Shipping And Shipping Freught From Vendor Dashboard

Hello,

When a vendor update a products Shipping Properties, how can we hide the fields "Free Shipping" and "Shipping Freight" from his Dashboard?

Thanks

shipping properties.png

Hello,

When a vendor update a products Shipping Properties, how can we hide the fields "Free Shipping" and "Shipping Freight" from his Dashboard?

Thanks

design/backend/templates/views/products/components/products_shipping_settings.tpl

replace

{__("free_shipping")}:
{__("shipping_freight")} ({$currencies.$primary_currency.symbol nofilter}):

with

{if $smarty.const.ACCOUNT_TYPE != 'vendor'}
{__("free_shipping")}:
{__("shipping_freight")} ({$currencies.$primary_currency.symbol nofilter}):
{/if}

Then clear cache and check

Amazing .. many thanks ..

I surrounded the view code of the targeted shipping settings with ({if $smarty.const.ACCOUNT_TYPE != 'vendor'}) and it worded ..

Many thanks again ..

You are welcome!