Search found 43 matches
- 28 May 2025, 17:35
- Forum: Help
- Topic: Boost for products
- Replies: 1
- Views: 111416
Boost for products
Hi. In the project for now I have 2 products. They have the same labels and the same category. And the don't have any texts prices and etc. For the second product I increased the boost from 1 to 1.5. And for the first product the boost is 1. When I go to link MY_DOMAIN/shop/CATEGORY_NAME~CATEGORY_ID...
- 01 Apr 2025, 11:57
- Forum: Help
- Topic: Filter by customer group in admin panel
- Replies: 5
- Views: 20332
Re: Filter by customer group in admin panel
Great. Thanks.
- 31 Mar 2025, 08:14
- Forum: Help
- Topic: Filter by customer group in admin panel
- Replies: 5
- Views: 20332
Re: Filter by customer group in admin panel
Your given solution always gives an empty result. But I can't know why. Maybe reason is a version ? Project Aimeos version is 2023.07
- 28 Mar 2025, 14:24
- Forum: Help
- Topic: Filter by customer group in admin panel
- Replies: 5
- Views: 20332
Re: Filter by customer group in admin panel
I tried by this way but it didn't help $manager = \Aimeos\MShop::create( $this->context(), 'customer' ); $search = $this->initCriteria( $manager->filter(), $params ); $func = $search->make( 'customer:has', ['group', 'default', 1] ); $expr = array( $search->compare( '!=', $func, null ), ); $search->s...
- 28 Mar 2025, 11:50
- Forum: Help
- Topic: Filter by customer group in admin panel
- Replies: 5
- Views: 20332
Filter by customer group in admin panel
Hi. In this article I found a solution for this case. https://aimeos.org/help/viewtopic.php?f=15&t=6831&p=24949#p24949 Advice for it is use 'customer:has("group","default",<id>)' But I don't know how to use it. Below is my code for search. Is available any code example or...
- 13 Mar 2024, 09:01
- Forum: Help
- Topic: password confirmation
- Replies: 2
- Views: 40131
Re: password confirmation
Hi.
Add a new subpart name in the checkout -> standard -> subparts array of the configuration file. Then create a manager file with necessary templates.Then add 'checks password' middleware for this subpart in the same configuration file.
Add a new subpart name in the checkout -> standard -> subparts array of the configuration file. Then create a manager file with necessary templates.Then add 'checks password' middleware for this subpart in the same configuration file.
- 06 Mar 2024, 05:31
- Forum: Help
- Topic: Route [aimeos_page] not defined
- Replies: 6
- Views: 72286
Re: Route [aimeos_page] not defined
Hi.
By default in Aimeos doesn't exist route with the name 'aimeos_page'. You can check more details about your project routes using 'php artisan route:list' in the terminal..
By default in Aimeos doesn't exist route with the name 'aimeos_page'. You can check more details about your project routes using 'php artisan route:list' in the terminal..
- 25 Feb 2024, 10:47
- Forum: Help
- Topic: Intercepting Frontend Product Controller with Product Decorator
- Replies: 9
- Views: 104990
Re: Intercepting Frontend Product Controller with Product Decorator
You have configured your configurations incorrectly.
Try this.
Try this.
Code: Select all
'product' => [
'decorators' => [
'local' => ['Specialvariant']
]
]
- 24 Feb 2024, 14:30
- Forum: Help
- Topic: Intercepting Frontend Product Controller with Product Decorator
- Replies: 9
- Views: 104990
Re: Intercepting Frontend Product Controller with Product Decorator
Hi.
Did you clear the cache ?
Did you clear the cache ?
- 22 Feb 2024, 13:44
- Forum: Help
- Topic: I can not find outputs of cronjobs (product/export, product/export/sitemap)
- Replies: 4
- Views: 40396
Re: I can not find outputs of cronjobs (product/export, product/export/sitemap)
You can call 'info' method like this: '$this->info(...)' for them some results.