Remove the add new button renderList - prestashop 1.7
unset
public function renderList()
{
unset($this->toolbar_btn['new']);
return parent::renderList();
}
Remove the link from list - admin listing
add the bootstrap css
public function __construct()
{
$this->bootstrap = true;
$this->list_no_link = true;
}
Comments
Post a Comment