Where to edit select options for external form?
PermalinkWe have a particular form on our website which has dropdown selections. I need to add some extra options in the select drop down.
The form is added as an external form and i see this code in the file:
<!-- help -->
<div class="field help">
<div class="select">
<select name="help">
<?php echo $bh->optionsFromTextAttribute('how_can_we_make_you_smile', 'How Can We Make You Smile'); ?>
</select>
<?php echo $bh->svg('chevron-down'); ?>
</div>
</div>
Where is that pulling the list of dropdown options from? Would it be in the database? How could i find that place and adjust the drop down select options?
Thanks, bare with me if some wording is not technically right, i'm not too familiar with this!
