How to remove the label No carrier needed in Shipp

2019-09-05 15:37发布

How to remove the label No carrier needed in Shipping page in Prestashop1.6 enter image description here

Also How to add vertical scrolling in left side menu in Admin side (back office )of Prestashop1.6- Which tpl file I must edit to add the scrolling for the left menu?

enter image description here

1条回答
Anthone
2楼-- · 2019-09-05 16:09

To remove label edit/remove line 50 in themes/yourthemefolder/order-carrier.tpl.

{if isset($isVirtualCart) && $isVirtualCart}
    <p class="alert alert-warning">{l s='No carrier is needed for this order.'}</p> // edit or remove this line
{else}

The simplest way to add vertical scrolling is to edit the youradminfolder/themes/default/css/admin-theme.css, find #nav-sidebar and add overflow-y: auto;.

查看更多
登录 后发表回答