Skip to content

Instantly share code, notes, and snippets.

@bennick
Created January 14, 2013 16:31
Show Gist options
  • Save bennick/4531313 to your computer and use it in GitHub Desktop.
Save bennick/4531313 to your computer and use it in GitHub Desktop.
hidden products option select drop down
<div style="display:none;">
<span class="image_options_text"><?= h($option->name) ?>:</span>
<select name="<?= $control_name ?>">
<?
$values = $option->list_values();
foreach ($values as $value):
?>
<option <?= option_state($posted_value, $value) ?>
value="<?= h($value) ?>"><?= h($value) ?></option>
<? endforeach ?>
</select>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment