Jump to content

Catagory Order Problem


Guest poongamer

Recommended Posts

Guest poongamer

For some reason when I add new top level catagories they are listing out of the order Im adding them...

For some reason the first 2 go ok but then any others I add show up on the top of the others on my store home page...any ideas why? can it be the skin I purchased?

Link to comment
Share on other sites

  • 3 months later...

To sort categories into alpha order rather than the default cat id order..

open up..

includes/boxes/categories.inc.php and find

(approx line 35)

// query database

$results = $db->select("SELECT cat_name, cat_id FROM ".$glob['dbprefix']."CubeCart_category WHERE cat_father_id = 0");




repalce it with 




// query database

$results = $db->select("SELECT cat_name, cat_id FROM ".$glob['dbprefix']."CubeCart_category WHERE cat_father_id = 0 order by cat_name ASC");

save and upload.

job done..

Link to comment
Share on other sites

  • 2 weeks later...
  • 4 months later...
  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...