Comments Eero started the conversationFebruary 17, 2014 at 12:41pmHello. When Ill try to add extra class to row which is inside another row, it wont add any extra class. I cant find that class from source code, so that maybe php related issue. Thanks in advance!Eero repliedFebruary 17, 2014 at 1:16pmHey,Solved the issue:at salient/nectar/nectar-vc-addons/vc_templates/vc-row.php at line 95 there was missing el_class declaration. There was just class but no el_class.So added: 'el_class' => '',to extract shortcodesand: <div id="'.uniqid("fws_").'" class="wpb_row vc_row-fluid '. $main_class . $parallax_class . ' ' . $class . ' ' . $el_class . ' ' . $etxra_class.' " style="'.$style.'">';thats line 95 Sign in to reply ...
Hey,
Solved the issue:
at salient/nectar/nectar-vc-addons/vc_templates/vc-row.php at line 95 there was missing el_class declaration. There was just class but no el_class.
So added:
'el_class' => '',
to extract shortcodes
and:
<div id="'.uniqid("fws_").'" class="wpb_row vc_row-fluid '. $main_class . $parallax_class . ' ' . $class . ' ' . $el_class . ' ' . $etxra_class.' " style="'.$style.'">';
thats line 95