How to make the site search always global?
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
How to make the site search always global?
Now, if I am inside a category, the search works inside this category. What do I need to do to make the search work everywhere and always globally for all products?
Aimeos 2024.10.3 + Laravel 11, PHP 8.2, MySql8.0, Nginx, Ubuntu 22.04.5 LTS
Re: How to make the site search always global?
Use this config setting: https://aimeos.org/docs/2024.x/config/c ... rce-search
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: How to make the site search always global?
Doesn't work:

Search inside category:

Global searching:


Search inside category:

Global searching:

Aimeos 2024.10.3 + Laravel 11, PHP 8.2, MySql8.0, Nginx, Ubuntu 22.04.5 LTS
Re: How to make the site search always global?
Sorry, this wasn't the correct setting. There's one named very similarly:
https://aimeos.org/docs/2024.x/config/c ... e-search_1
But it's not enabled by default so it's not the reason why products are only searched within the current category.
The reason is that the f_catid parameter is included in the URL if it's available here:
https://github.com/aimeos/ai-client-htm ... y.php#L104
So you can overwrite the template and remove f_catid from the list of parameters and then it should work.
https://aimeos.org/docs/2024.x/config/c ... e-search_1
But it's not enabled by default so it's not the reason why products are only searched within the current category.
The reason is that the f_catid parameter is included in the URL if it's available here:
https://github.com/aimeos/ai-client-htm ... y.php#L104
So you can overwrite the template and remove f_catid from the list of parameters and then it should work.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
