How to override the fields?
-
I would like to add fontawesome icons to the fields, by adding a new
div
container to theinput
and inside of it add the fontawesome icon, for example;<div class="form-row validate-required" id="user_email_field" data-priority=""> <label for="user_email" class="ur-label">Email Address <abbr class="required" title="required">*</abbr></label> <div class="added-element"> <!-- Add container to the element --> <i class="fas fa-at csx-custom-form-icon"></i> <!-- Add fontawesome icon --> <input data-rules="" data-id="user_email" type="email" class="input-text input-email ur-frontend-field " name="user_email" id="user_email" placeholder="" value="" required="required" data-label="Email Address"> </div> </div>
is that possible?
I see the directory of
templates
inside the plugin, but I’m not sure which file to override, or is there a hook to do this?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to override the fields?’ is closed to new replies.