Search found 7894 matches

by aimeos
11 Jan 2019, 10:34
Forum: TYPO3 extension
Topic: baseurl
Replies: 19
Views: 8551

Re: baseurl

Can you tell us more about the incompatibility? What happens exactly?
by aimeos
10 Jan 2019, 10:43
Forum: TYPO3 extension
Topic: How to extend fe_user on order and confirm email
Replies: 19
Views: 7383

Re: How to extend fe_user on order and confirm email

The cs_extra key/value pairs are also passed to the customer frontend controller: https://github.com/aimeos/ai-client-html/blob/master/client/html/src/Client/Html/Checkout/Standard/Process/Account/Standard.php#L230 There, they are passed via fromArray() to the customer item: https://github.com/aimeo...
by aimeos
09 Jan 2019, 10:58
Forum: TYPO3 extension
Topic: How to add title field to user on creating order
Replies: 3
Views: 1516

Re: How to add title field to user on creating order

By default, the title field is an input field. You can change the template to use a select box with your values instead.
by aimeos
09 Jan 2019, 10:20
Forum: TYPO3 extension
Topic: How to add title field to user on creating order
Replies: 3
Views: 1516

Re: How to add title field to user on creating order

Change the "mandatory" configuration for the addresses and include "order.base.address.title":
https://aimeos.org/docs/Configuration/C ... ut_address
by aimeos
09 Jan 2019, 10:15
Forum: Laravel package
Topic: Example pages
Replies: 20
Views: 6393

Re: Example pages

The call to "$this->encoder()->html()" tries to call an Aimeos view helper which isn't available in Blade. Instead, Blade has it's own was to escape strings by using "{{ $string }}":
https://laravel.com/docs/5.7/blade
by aimeos
07 Jan 2019, 12:31
Forum: TYPO3 extension
Topic: baseurl
Replies: 19
Views: 8551

Re: baseurl

Open the web inspector of your browser (e.g. Ctrl+Shift+J for Chrome) and look into the network tab. There are the requests and responses, esp. the XHR ones you can inspect.
by aimeos
07 Jan 2019, 12:29
Forum: TYPO3 extension
Topic: Problems with loading product images
Replies: 6
Views: 2903

Re: Problems with loading product images

A library is much simpler to use in terms of error handling than a binary. You should ask your hoster to install the PHP imagick library as well if they already has the ImageMagick binary installed.
by aimeos
07 Jan 2019, 12:27
Forum: Laravel package
Topic: VAT ID if salution is not "company"
Replies: 1
Views: 785

Re: VAT ID if salution is not "company"

Usually, only companies have VAT IDs and even single persons need a business to get a VAT ID. Thus, it's hidden if the salutation is for a person to keep the address form small. You can overwrite the JS easily if you have different requirements.
by aimeos
07 Jan 2019, 12:24
Forum: Laravel package
Topic: Attributes with prces and stock
Replies: 1
Views: 865

Re: Attributes with prces and stock

Create products of type "Selection" and add variant articles to them. The variant articles can contain own prices and stock levels and are exactly what you want.