How to remove the label No carrier needed in Shipp

2019-09-05 15:40发布

问题:

How to remove the label No carrier needed in Shipping page in Prestashop1.6

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?

回答1:

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;.