Search found 7896 matches

by aimeos
27 Dec 2018, 12:32
Forum: TYPO3 extension
Topic: How to add Pament cost from Paypal
Replies: 8
Views: 2772

Re: How to add Pament cost from Paypal

There's a "Costs" service decorator available you can add to the PayPal service item: https://aimeos.org/docs/User_Manual/Administration_Interface/Service_decorators#Costs Which PayPal information would you like to add to the e-mails? Every information that's available is stored as order s...
by aimeos
27 Dec 2018, 12:23
Forum: Symfony bundle
Topic: Uploaded product's images are not shown
Replies: 1
Views: 3641

Re: Uploaded product's images are not shown

The "client/html/common/content/baseurl" is for URL the files are publically available. That may be locally or at a CDN or somewhere else. The place where the files are physically stored is configured using the "resource/fs*" configuration, i.e. by default: https://github.com/aim...
by aimeos
21 Dec 2018, 14:00
Forum: TYPO3 extension
Topic: Extend CKE Editor with Tables
Replies: 1
Views: 977

Re: Extend CKE Editor with Tables

You have to specify the whole config I guess: Aimeos.editorcfg = [ { name: 'clipboard', items: [ 'Undo', 'Redo' ] }, { name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] }, { name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'Strike', '-', 'RemoveFormat' ] }, { name: 'insert', items: [ ...
by aimeos
20 Dec 2018, 11:59
Forum: Laravel package
Topic: Fetch products on homepage
Replies: 5
Views: 2794

Re: Fetch products on homepage

The default output of the list view (without any parameters) lists all products. You only have to add that component to your home page: https://aimeos.org/docs/Laravel/Create_new_pages
by aimeos
20 Dec 2018, 08:32
Forum: TYPO3 extension
Topic: How to extend fe_user on order and confirm email
Replies: 19
Views: 7397

Re: How to extend fe_user on order and confirm email

You can add a decorator that executes required actions after addItem() of the customer controller was called:
https://github.com/aimeos/ai-controller ... rd.php#L31
by aimeos
20 Dec 2018, 08:28
Forum: TYPO3 extension
Topic: Order countries by name
Replies: 2
Views: 1079

Re: Order countries by name

You can change the order via TypoScript configuration:
https://aimeos.org/docs/TYPO3/Configure ... ons_states

Maybe you can translate the page and add the appropriate configuration to that translated page :-)
by aimeos
18 Dec 2018, 22:23
Forum: TYPO3 extension
Topic: How to extend fe_user on order and confirm email
Replies: 19
Views: 7397

Re: How to extend fe_user on order and confirm email

I like some fields more for the user. aimeos creates new user on order so how can i set some additional fields there? You can add fields to the billing address template prefixed with "cs_extra" whose names and values will be passed to the fromArray() method of your customer manager in the...
by aimeos
17 Dec 2018, 22:33
Forum: TYPO3 extension
Topic: How to expand aimeos extension
Replies: 1
Views: 6272

Re: How to expand aimeos extension

Two problems:
1.) In the price manager, you added bind() for your new column for the first position but in the SQL statements you've added it to the last
2.) You need to configure the name of your price manager like you've done for your admin class, i.e. mshop/price/manager/name => Mystandard
by aimeos
17 Dec 2018, 22:30
Forum: Laravel package
Topic: How to add List type to image in Product page
Replies: 5
Views: 1881

Re: How to add List type to image in Product page

Can you please tell us more about what you want to achieve and where?
by aimeos
17 Dec 2018, 22:28
Forum: Laravel package
Topic: Error during install demo data
Replies: 5
Views: 2457

Re: Error during install demo data

That's a bug in the current Doctrine DBAL library (2.9.1):
https://github.com/doctrine/dbal/issues/3410

You can add this to your composer.json file to use the previous version instead until a new one is released:

Code: Select all

"doctrine/dbal": "v2.9.0"