I've been using extra fields in T3 for quite a while, using the method shown here.
However, I've now added a list to the extra fields and need to know how to show conditionals based on the value selected in that list. For example, if value 1 selected, then show this.
My XML:
<field name="list" type="list" default="" label="Manufacturer Used" description="">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</field>
</fieldset>
<?php if ($params->get('list')) : ?>
<p class="list_option">
<?php echo $attribs->get('list') ?>
</p>
<?php endif; ?>
As you can see my code is only based on the conditional that any value is selected; help selecting the value appreciated!
Thanks