Search found 210 matches

by kdim95
13 Jan 2023, 10:16
Forum: Laravel package
Topic: Catalog Manager - Get child catalog items ?
Replies: 2
Views: 631

Catalog Manager - Get child catalog items ?

Laravel framework version: 9.47.0 Aimeos Laravel version: ~2022.10 PHP Version: 8.2.1 Environment: Linux Hello, What's the best way to get the child catalog items in Catalog Manager search results? My code: $catalog_manager = \Aimeos\MShop::create( $this->context, 'catalog' ); $catalog_items = $cata...
by kdim95
09 Jan 2023, 10:28
Forum: Help
Topic: Create new product using aimeos manager
Replies: 9
Views: 17314

Re: Create new product using aimeos manager

Is there a limitation to creating products with custom IDs?
If I try for example to setId(999) or pass "product.id" 999 to the product array, the product is not saved with the custom ID.
by kdim95
08 Dec 2022, 09:36
Forum: Laravel package
Topic: Content in ai-cms-grapesjs module is not saving
Replies: 3
Views: 708

Re: Content in ai-cms-grapesjs module is not saving

Thank you guys, I executed composer update and it was fixed:
Upgraded aimeos/ai-cms-grapesjs 2022.10.4 => 2022.10.5
by kdim95
07 Dec 2022, 15:14
Forum: Laravel package
Topic: Content in ai-cms-grapesjs module is not saving
Replies: 3
Views: 708

Content in ai-cms-grapesjs module is not saving

Laravel framework version: 9.43.0 Aimeos Laravel version: ~2022.10 PHP Version: 8.1.13 Environment: Linux After updating Aimeos, the content in the CMS module in the backend is not saving. There is no error log, after saving, it only says "saved successfully" and no error log. How should I...
by kdim95
02 Dec 2022, 09:02
Forum: Laravel package
Topic: Product filtering does not take price rules in account
Replies: 1
Views: 498

Product filtering does not take price rules in account

Laravel framework version: 9.42.2 Aimeos Laravel version: ~2022.10 PHP Version: 8.1.13 Environment: Linux How to reproduce: Create a discount category Create a Percent,Category rule for the discount category Go to product listing and attempt to filter by price, the products do not filter based on th...
by kdim95
29 Nov 2022, 14:26
Forum: Laravel package
Topic: Filter products by order amount?
Replies: 3
Views: 742

Re: Filter products by order amount?

Yes, I want to sort by the amount of orders, I will also go ahead and upgrade the version.
by kdim95
28 Nov 2022, 14:56
Forum: Laravel package
Topic: Filter products by order amount?
Replies: 3
Views: 742

Filter products by order amount?

Laravel framework version: 9.41.0 Aimeos Laravel version: * 2022.07.2 PHP Version: 8.1.12 Environment: Linux What's the best way to do this? The file I'm redacting is a customized version of ai-client-html/src/Client/Html/Catalog/Lists/Standard . I'm changing the filtering inside data() function. I ...
by kdim95
26 Nov 2022, 11:59
Forum: Laravel package
Topic: creating managers
Replies: 15
Views: 6930

Re: creating managers

Thank you, knowing of the command made me check closer what I did wrong.

I got confused by the namespace Aimeos\Upscheme\Task and had placed my task inside the directory 'src\Aimeos\Upscheme\Task' instead of 'setup\default'.
by kdim95
25 Nov 2022, 14:52
Forum: Laravel package
Topic: How to filter only promotion products?
Replies: 2
Views: 602

Re: How to filter only promotion products?

aimeos wrote: 25 Nov 2022, 14:38

Code: Select all

$cntl->compare( '!=', $cntl->function( 'product:has', ['catalog', 'promotion'] ), null );
Thank you, this was exactly what I needed for my filtering.
by kdim95
25 Nov 2022, 13:39
Forum: Laravel package
Topic: creating managers
Replies: 15
Views: 6930

Re: creating managers

I don't understand how to execute the task for the table creation.

Some help please?