#1228

Nam Nguyen
Moderator

Hi torreswebsolutions,

Step1 :via file root\modules\snsproducttabs\snsproducttabsclass.php . Remove function getLabelField($key)

Step2: root\modules\snsproducttabs\snsproducttabs.php. Add new function after function uninstall().

public function getLabelField($key){
$name_label = ”;
switch($key){
default:
case ‘featured_product’:
$name_label = $this->l(‘Featured Products’);
break;
case ‘special_product’:
$name_label = $this->l(‘Special Products’);
break;
case ‘new_product’:
$name_label = $this->l(‘New Products’);
break;
case ‘top_sellers’:
$name_label = $this->l(‘Best Sellers’);
break;
}
return $name_label;
}

Step3: Goto backoffice translation

Thanks!