Hi,
Open the following file /templates/shaper_shopin/features/menu.php on 384 no line you will get:
$class .= ' sp-has-child';
replace it with:
if( count($this->children[$item->id]) == 1 ) {
if( $this->children[$item->id][0]->params->get('menu_show') ){
$class .= ' sp-has-child';
}
} else {
$class .= ' sp-has-child';
}
- Thanks
I didn't find line in this place "/templates/shaper_shopin/features/menu.php[/b] on 384 no line ".
I found it in helix menu but I don't understand which place I have to replace - all after $class .= ' sp-has-child'; till ...?