Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter tracy_fs

    (@tracy_fs)

    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/

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove sort feature’ is closed to new replies.