Search found 7894 matches

by aimeos
27 Mar 2024, 09:59
Forum: Laravel package
Topic: Implementing an admin panel
Replies: 2
Views: 18378

Re: Implementing an admin panel

The file location mentioned in the error isn't within the expected directory structure. There seems to be something wrong in your setup.
by aimeos
27 Mar 2024, 09:57
Forum: Laravel package
Topic: New model in new context not saving
Replies: 1
Views: 13610

Re: New model in new context not saving

Passing data directly to the create() method doesn't set the internal modified state so save() skips sending the data to the database. Use fromArray() instead: $data = [ 'name' => '2024 Season - March 3x3', 'code' => '2024spring3x3', 'status' => 1, ]; $newitem = $seasonManager->create()->fromArray( ...
by aimeos
25 Mar 2024, 07:53
Forum: Laravel package
Topic: Adding Menu Items to Admin Panel
Replies: 4
Views: 26949

Re: Adding Menu Items to Admin Panel

jafo66 wrote: 24 Mar 2024, 19:07 Thanks for information. One modifying the template, do you have good way to make sure I don't lose out on upgrades in the future?
See: https://aimeos.org/docs/latest/admin/jq ... templates/
by aimeos
24 Mar 2024, 11:06
Forum: Help
Topic: 419 Page expired msg
Replies: 1
Views: 16084

Re: 419 Page expired msg

Seems like the Laravel access token isn't valid any more. The Laravel session expires after some time (2h by default).
by aimeos
24 Mar 2024, 11:05
Forum: Laravel package
Topic: Jetstream Teams within Aimeos
Replies: 2
Views: 17925

Re: Jetstream Teams within Aimeos

Overwrite this template and add a new custom menu item:
https://github.com/aimeos/ai-admin-jqad ... m/page.php
by aimeos
24 Mar 2024, 11:00
Forum: Laravel package
Topic: Adding Menu Items to Admin Panel
Replies: 4
Views: 26949

Re: Adding Menu Items to Admin Panel

1a) How do I add one off translations to proper capitalize the menu items? I did try to create a en.php in the i18n directory but I don't think that works or I didn't configure it properly. If you want to add translation to PO files instead of the ./config/shop.php, you have to compile the .po file...
by aimeos
24 Mar 2024, 09:12
Forum: Help
Topic: Default variant selection
Replies: 1
Views: 15969

Re: Default variant selection

You could extend the JS code and add a new method to pre-select variant attributes of the first article after page load here: https://github.com/aimeos/ai-client-html/blob/master/themes/client/html/default/catalog-detail.js If you can create a pull request, we would be happy to merge your change int...
by aimeos
24 Mar 2024, 09:08
Forum: TYPO3 extension
Topic: madmin_log
Replies: 1
Views: 16141

Re: madmin_log

Execute the log cleanup job controller in the Aimeos scheduler and execute it once a day:
https://aimeos.org/docs/latest/typo3/setup/#once-a-day
by aimeos
24 Mar 2024, 09:07
Forum: Help
Topic: Question about swiffy-slider-item-ratio
Replies: 2
Views: 21355

Re: Question about swiffy-slider-item-ratio

If you have both, portrait and landscape images, then it's indeed difficult as the Swiffy slider implementation works best if you have a predefined ratio between width and height. You can try to unset that ratio in the CSS and see if it works for you.