Search found 7907 matches

by aimeos
19 Aug 2020, 07:28
Forum: Help
Topic: Search products API
Replies: 2
Views: 1222

Re: Search products API

There's no way to search for all texts regardless of the language because usually it makes no sense.
But you can set the language of all English texts to "All" so they are also used if you pass "ar" as language.
by aimeos
19 Aug 2020, 07:22
Forum: TYPO3 extension
Topic: Couldn't edit frontend user data with 'Aimeos Shop - Account profile' content element
Replies: 10
Views: 3177

Re: Couldn't edit frontend user data with 'Aimeos Shop - Account profile' content element

plugin.tx_aimeos.settings.mshop.customer.manager.typo3.pid-default = 13 Maybe it's a problem with the siteid. Guess the value of the "siteid" column is empty for that record in fe_users but is that also the case for the corresponding fe_users_address entry? Which URL should I use here? co...
by aimeos
17 Aug 2020, 08:43
Forum: Laravel package
Topic: Aimeos vs Bagisto and SPA templates
Replies: 12
Views: 9698

Re: Aimeos vs Bagisto and SPA templates

We've decided to build a PWA together with other interested parties that isn't specific for Aimeos so it can be used in a greater context. Thus, the project takes longer than expected but will be much better at the end :-) The simplified jsapi is available here: https://github.com/aimeos/ai-client-j...
by aimeos
17 Aug 2020, 07:47
Forum: Laravel package
Topic: JSON API for Creating Coupon with Configs and Decorators
Replies: 4
Views: 1218

Re: JSON API for Creating Coupon with Configs and Decorators

Please update to the current 2020.07 release first as the problem should be fixed there.
by aimeos
17 Aug 2020, 06:47
Forum: TYPO3 extension
Topic: Download article (pdf) - only with account?
Replies: 4
Views: 1803

Re: Download article (pdf) - only with account?

You can remove the option to create an account and make it mandatory by always passing the value for creating an account. Yes, you can also send the file with the e-mail if it's not too big. You have to extend one of the e-mails and add the file like the invoice PDF: https://github.com/aimeos/ai-cli...
by aimeos
17 Aug 2020, 06:43
Forum: Laravel package
Topic: Create manual order
Replies: 9
Views: 3650

Re: Create manual order

You can use: $prodcntl = \Aimeos\Controller\Frontend::create( $this->getContext(), 'product' ); $basketcntl = \Aimeos\Controller\Frontend::create( $this->getContext(), 'basket' ); foreach( ['17' => 3, '27' => 4] as $prodid => $qty ) { $product = $prodcntl->get( $prodid, ['price', 'text', 'media'] );...
by aimeos
17 Aug 2020, 06:36
Forum: Symfony bundle
Topic: Newcomers to the forum
Replies: 1
Views: 59845

Re: Newcomers to the forum

There are no ready-made designs yet but you can adapt the Aimeos standard theme easily since it uses CSS variables.
Music files are supported as previews and for download.
by aimeos
17 Aug 2020, 06:29
Forum: Laravel package
Topic: JSON API for Creating Coupon with Configs and Decorators
Replies: 4
Views: 1218

Re: JSON API for Creating Coupon with Configs and Decorators

Which Aimeos version do you use? Think, it's already fixed in 2020.07.
by aimeos
14 Aug 2020, 09:55
Forum: Laravel package
Topic: updating aimeos core
Replies: 3
Views: 1357

Re: updating aimeos core

It seems to be a dependency handling problem in composer that it has problems updating all packages at once.