Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Why my shop is VERY SLOW ??? I don't understand ? help me !!


Guest

Recommended Posts

Somethings to speed things up:

 

Remove the counter on the categories

 

Use a multi-image add-on for smaller thumbnails on images and then the larger images on Click to View

 

What version and snapshot are you using? Does it still have options in the Admin to turn on/off categories?

 

Fooling with some additional indexes might also help in the database.

Link to comment
Share on other sites

Most obvious reasons:

 

1) You're counting the products

2) You use large pics scaled down with html

 

Try changing this and using the cache and see if things improve

 

HTH,

Mattice

"Politics is the art of preventing people from taking part in affairs which properly concern them"

Link to comment
Share on other sites

If you look in /catalog/includes/boxes/categories.php there is a section of code that makes the -> appear.

 

Depending on your version, it will either be:

 

    if (tep_has_category_subcategories($counter)) {

     $categories_string .= '->';

   }

 

Or, something like:

 

    if (tep_has_category_subcategories($counter)) {

     $categories_string .= '->';

   }

Link to comment
Share on other sites

  • 1 month later...

Sorry what do you need to do to turn it off? just remove the:

 

if (tep_has_category_subcategories($counter)) {

$categories_string .= '->';

}

 

Thank-you

Link to comment
Share on other sites

Yes that is adding in the -> symbol on the list.

 

You can take it out, or ... just comment it out so that if you ever want something there you will know where to put it ... :D

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...