Jump to content

[SOLVED] Choose a category which will be opened when user first enters the site


Recommended Posts

There is no option in Prestashop to do this. There are two approaches I can think of. You can simply put a redirect in index.php to category.php?id_category=2, for example, but I'm not sure whether this is bad for search engines. The other solution is to copy the contents of category.php into index.php and add code like the following to the top:

$_GET['id_category'] = 2;



Change 2 to the id of the category you want to display by default.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...