I was able to fix it!!
if anyone is wondering how to remove it – go to functions.php and remove this code…
` echo ‘<form id=”product_order”><select id=”product_order_selector” name=”product_order”>’;
foreach ($sort_options as $name => $value) {
$option = ‘<option value=”‘.$name.'” ‘.selected($name, $selected, 0).’>’.$value.'</option>’;
echo apply_filters(‘product_order_dropdown_options’, $option, $name, $value, $multiple_settings, $selected);
}
echo ‘</select></form>’;
echo ‘<script>jQuery(“#product_order_selector”).change(function() { jQuery(“#product_order”).submit(); });</script>’;
Plugin Author
ndre
(@ndre)
If you remove the code from functions.php it will be overwritten with every update.
A better way would be to use a shortcode with sort atrbute set to zero. e.g. [show_products sort=”0″]
You can find more information about product shortcode in the docs:
http://implecode.com/docs/ecommerce-product-catalog/product-shortcodes/