Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

Remove 'SKU' etc. from subcategory search bar

 
Reply
   X-Cart forums > X-Cart 4 > Dev Questions
 
Thread Tools Search this Thread
  #1  
Old 08-07-2010, 03:25 PM
 
Sisom Sisom is offline
 

eXpert
  
Join Date: Sep 2006
Posts: 310
 

Default Remove 'SKU' etc. from subcategory search bar

My client wanted me to remove the 'SKU' 'Product' (which means 'title') and 'Default' search options, from the category and subcategory pages, just leaving 'Price', as he only has a few items in each category.

I thought this was going to be really difficult, but a simple Google search directed me to another post on this forum, where Balinor explained which PHP file actually performs the search command.

Edit
include/search.php

and from line 41 you should see:

Code:
$sort_fields = array( "productcode" => func_get_langvar_by_name("lbl_sku"), "title" => func_get_langvar_by_name("lbl_product"), "price" => func_get_langvar_by_name("lbl_price"), "orderby" => func_get_langvar_by_name("lbl_default") );

Simply put a # symbol at the start of the line of each of the search functions you want to temporarily remove - the # symbol at the start of a line means 'comment out this line' - i.e. don't run those commands. (This is only in PHP files, for Smarty templates, you need to use {* and *} to comment out sections.)

So I did the following:

Code:
$sort_fields = array( # "productcode" => func_get_langvar_by_name("lbl_sku"), # "title" => func_get_langvar_by_name("lbl_product"), "price" => func_get_langvar_by_name("lbl_price"), # "orderby" => func_get_langvar_by_name("lbl_default") );

Took me two minutes, and now only the 'Price' search shows up, but I can easily uncomment any of the others, at any time in the future.
__________________
X-Cart Gold Version 4.3.2
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Dev Questions



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 09:01 PM.

   

 
X-Cart forums © 2001-2020