Search found 8237 matches

by aimeos
28 Aug 2016, 00:59
Forum: Laravel package
Topic: Not allowed to access configuration
Replies: 3
Views: 3662

Re: Not allowed to access configuration

i thought just leaving it in the right directory will load that template?! that is without specifying the directory in shop.php like i did above. That is for extensions. See here https://aimeos.org/docs/Developers/Html_frontend/Overwrite_existing_templates That's right, it's enough to copy the temp...
by aimeos
28 Aug 2016, 00:44
Forum: Laravel package
Topic: Tax calculation in the US per state?
Replies: 6
Views: 7012

Re: Tax calculation in the US per state?

You are right, that's the problem. I've fixed that in the current dev-master branch.
Thanks for reporting!
by aimeos
27 Aug 2016, 09:59
Forum: Laravel package
Topic: When writing a plugin Base class is not found
Replies: 3
Views: 3829

Re: When writing a plugin Base class is not found

In the docs, "singleton" was not explicitly defined in the skeleton example.
Regarding the getValue(), please use this instead:

Code: Select all

$value = $this->getConfigValue( 'key', 'default' );
We've updated the documentation accordingly. Thanks for the hints!
by aimeos
27 Aug 2016, 09:48
Forum: Laravel package
Topic: Tax calculation in the US per state?
Replies: 6
Views: 7012

Re: Tax calculation in the US per state?

You have to add "order.base.address.state" to the list of mandatory input fields (and "order.base.address.countryid" as well):
https://aimeos.org/docs/Configuration/C ... /mandatory
by aimeos
26 Aug 2016, 16:56
Forum: Laravel package
Topic: Show custom in payment provider process()
Replies: 3
Views: 3420

Re: Show custom in payment provider process()

You can adapt the payment page template as you like for your project:
https://github.com/aimeos/ai-client-htm ... efault.php
by aimeos
26 Aug 2016, 16:55
Forum: Laravel package
Topic: Tax calculation in the US per state?
Replies: 6
Views: 7012

Re: Tax calculation in the US per state?

Can you please update to "~2016.07" first? We've fixed the problems you've reported before in the latest stable versions, so that should work as expected. The tax output in the basket and the checkout process is rendered here: https://github.com/aimeos/ai-client-html/blob/master/client/htm...
by aimeos
26 Aug 2016, 13:30
Forum: Laravel package
Topic: Skipping payment provider in checkout
Replies: 4
Views: 3444

Re: Skipping payment provider in checkout

You can configure the "Autofill" basket plugin in the "Plugin" tab of the expert mode admin interface (autofill.payment: 1)
by aimeos
25 Aug 2016, 23:31
Forum: TYPO3 extension
Topic: No fe_user is created if mailaddress is to long
Replies: 2
Views: 2552

Re: No fe_user is created if mailaddress is to long

Did you had a look into the Aimeos log (madmin_log)? The customer account data is passed through a message queue. Here's the message is created: https://github.com/aimeos/ai-client-html/blob/master/client/html/src/Client/Html/Checkout/Standard/Order/Account/Standard.php#L244 The account is created h...
by aimeos
25 Aug 2016, 11:43
Forum: TYPO3 extension
Topic: URL sanatize with "-" instead of "_"
Replies: 4
Views: 4625

Re: URL sanatize with "-" instead of "_"

Sanitize URL parameters are more complex than just using "_" or "-" for some characters. Think about non-latin languages. Thus we've decided to leave this to the shop owners so they can exactly define what they want the URL to look like.