Virtual Assistant Posted March 28, 2012 Share Posted March 28, 2012 How do you remove the drop down option box under categories? Options are sort --> price etc. Thanks Karen Link to comment Share on other sites More sharing options...
MEG Venture Posted March 28, 2012 Share Posted March 28, 2012 Themes>Your_theme>product-sort.tpl find below code and delete. Do not forget to back-up your file before doing that. That's all. However, you may also want to put an extra line in the place of the code you deleted as it also deletes the break after the COMPARE button. Regards. <form id="productsSortForm" action="{$request|escape:'htmlall':'UTF-8'}"> <p class="select"> <select id="selectPrductSort"> <option value="{$orderbydefault|escape:'htmlall':'UTF-8'}:{$orderwaydefault|escape:'htmlall':'UTF-8'}" {if $orderby eq $orderbydefault}selected="selected"{/if}>{l s='--'}</option> {if !$PS_CATALOG_MODE} <option value="price:asc" {if $orderby eq 'price' AND $orderway eq 'asc'}selected="selected"{/if}>{l s='Price: lowest first'}</option> <option value="price:desc" {if $orderby eq 'price' AND $orderway eq 'desc'}selected="selected"{/if}>{l s='Price: highest first'}</option> {/if} <option value="name:asc" {if $orderby eq 'name' AND $orderway eq 'asc'}selected="selected"{/if}>{l s='Product Name: A to Z'}</option> <option value="name:desc" {if $orderby eq 'name' AND $orderway eq 'desc'}selected="selected"{/if}>{l s='Product Name: Z to A'}</option> {if !$PS_CATALOG_MODE} <option value="quantity:desc" {if $orderby eq 'quantity' AND $orderway eq 'desc'}selected="selected"{/if}>{l s='In-stock first'}</option> {/if} </select> <label for="selectPrductSort">{l s='Sort by'}</label> </p> </form> 6 Link to comment Share on other sites More sharing options...
Virtual Assistant Posted March 28, 2012 Author Share Posted March 28, 2012 Thank you, I appreciate the detailed answers. Link to comment Share on other sites More sharing options...
MEG Venture Posted March 28, 2012 Share Posted March 28, 2012 ur welcome! Link to comment Share on other sites More sharing options...
cowe Posted January 28, 2015 Share Posted January 28, 2015 Perfekt :-) Exactly what I was looking for. Immediately works Link to comment Share on other sites More sharing options...
n_s_simpson Posted June 3, 2015 Share Posted June 3, 2015 Does anyone know how to only remove the "In stock" drop down option? I'd also like to rename "Reference:" to "Part No:" if there's anyone that can guide me on how to do that. Cheers Nick Link to comment Share on other sites More sharing options...
n_s_simpson Posted June 17, 2015 Share Posted June 17, 2015 With this post being set to SOLVED am I unlikely to get any replies? Link to comment Share on other sites More sharing options...
tony_mik Posted January 6, 2016 Share Posted January 6, 2016 Themes>Your_theme>product-sort.tpl find below code and delete. Do not forget to back-up your file before doing that. That's all. However, you may also want to put an extra line in the place of the code you deleted as it also deletes the break after the COMPARE button. Regards. Thank you! Worked like a charm Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now