Skip to content

Instantly share code, notes, and snippets.

@angellromero
Created September 16, 2015 15:04
Show Gist options
  • Save angellromero/417f44a84e17158a0d73 to your computer and use it in GitHub Desktop.
Save angellromero/417f44a84e17158a0d73 to your computer and use it in GitHub Desktop.
Converting ASC/DESC to a Select Menu
<?php if($_key == 'name'): ?>
<option value="<?php echo $this->getOrderUrl($_key, 'asc') ?>"<?php if($this->isOrderCurrent($_key) && ($this->getCurrentDirection() == 'asc')): ?> selected="selected"<?php endif; ?>>
<?php echo $this->__("%s (A-Z)",$_order) ?>
</option>
<option value="<?php echo $this->getOrderUrl($_key, 'desc') ?>"<?php if($this->isOrderCurrent($_key) && ($this->getCurrentDirection() == 'desc')): ?> selected="selected"<?php endif; ?>>
<?php echo $this->__("%s (Z-A)",$_order) ?>
</option>
<?php endif;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment