Search found 37 matches

by nowrap
05 Aug 2023, 11:40
Forum: Laravel package
Topic: changes in jqadm templates not affect
Replies: 7
Views: 16596

Re: changes in jqadm templates not affect

Hello, i am facing a similar problem with aimeos 2022.x and a custom laravel theme. A change to the "<custom-theme>/views/jqadm/index.blade.php" file is not rendered in the admin area. I run the "php artisan optimize:clear" and the directory "storage/framework/views" is...
by nowrap
19 Jul 2023, 19:30
Forum: Laravel package
Topic: new group privileges
Replies: 9
Views: 26400

Re: new group privileges

Thx, alot!

Sorry for answering so late. So we have to upgrade from 2022.x to 2023.x first in order to use this improvement.
by nowrap
06 Jul 2023, 12:35
Forum: Laravel package
Topic: stripe & mastercard SecureID
Replies: 16
Views: 29405

Re: stripe & mastercard SecureID

Thx for the reply. I will look into it.
by nowrap
02 Jul 2023, 18:58
Forum: Laravel package
Topic: stripe & mastercard SecureID
Replies: 16
Views: 29405

Re: stripe & mastercard SecureID

I digged a bit more. The callback url runs through: vendor/aimeos/aimeos-laravel/src/Aimeos/Shop/Controller/CheckoutController.php vendor/aimeos/ai-client-html/src/Client/Html/Checkout/Confirm/Standard.php The confirmAction() calls the "checkout/confirm". Within the init() the $orderItem->...
by nowrap
02 Jul 2023, 18:09
Forum: Laravel package
Topic: new group privileges
Replies: 9
Views: 26400

Re: new group privileges

For us we have only two wishes:
  • option to configure which admin views are accasible for a new group
  • set an admin page as standard view after login for a new group
by nowrap
02 Jul 2023, 18:02
Forum: Laravel package
Topic: stripe & mastercard SecureID
Replies: 16
Views: 29405

Re: stripe & mastercard SecureID

Hello and thanks for your reply. We tried to insvestigate this issue in order tp provide more details. First we used our dev-instance. This system is configured with a stripe test account and the omnipay setting testrmode is set to yes. For testing 3DS and 3DS2 we used this cards: https://stripe.com...
by nowrap
27 Jun 2023, 21:22
Forum: Laravel package
Topic: new group privileges
Replies: 9
Views: 26400

Re: new group privileges

Thx for your reply. I added the other groups to the config/shop.php but this doesn't change the behaviour to automatically navigate to the admin dashboard view. It opens the /profile page. The request to /admin/default/jsonadm?locale=de is an options request. I tried to follow the source code to fin...
by nowrap
12 Jun 2023, 16:36
Forum: Laravel package
Topic: new group privileges
Replies: 9
Views: 26400

Re: new group privileges

Hello and thanks for this guide so far. I have two questions/problems. I added to config/shop.php: 'admin/jqadm/resource/dashboard/groups' => ['newgroup'] 'admin/jqadm/resource/order/groups' => ['newgroup'] 'roles' => ['editor', 'admin','newgroup'] If i login to /admin with a test user the dashboard...
by nowrap
12 Jun 2023, 15:24
Forum: Laravel package
Topic: How to limit text length of text product option
Replies: 2
Views: 3895

Re: How to limit text length of text product option

I know this attribute. Maybe my question wasn't precise enough. I hoped, that aimeos had some kind of built-in mechanismn to limit input fields and present a counter on the field. So that it is just a configuration. We created a small javascript function for this now as a quick solution - adding the...
by nowrap
08 Jun 2023, 09:36
Forum: Laravel package
Topic: How to limit text length of text product option
Replies: 2
Views: 3895

How to limit text length of text product option

Hello, we configured our voucher selection product to have a text type option. If i am right the rendering is done in this file: templates/client/html/common/partials/attribute.php And the resulting input-Field is this: <input id="select-<?= $enc->attr( $key ) ?>" class="form-control&...