Okay
  Public Ticket #164576
Row extra class
Closed

Comments

  • Eero started the conversation
    Hello. 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 replied

    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