Search found 7598 matches

by aimeos
02 Dec 2023, 14:14
Forum: Laravel package
Topic: Can't Overide template
Replies: 1
Views: 28

Re: Can't Overide template

The path to the file must be:

Code: Select all

packages/my-extension/templates/client/html/catalog/home/body.php
by aimeos
01 Dec 2023, 12:20
Forum: TYPO3 extension
Topic: Backend order overview - missing orderid
Replies: 1
Views: 58

Re: Backend order overview - missing orderid

The "relatedid" column must be set in the order detail panel, otherwise it's empty.
Don't mess up with the order ID, which is a different column in front of the list view.
by aimeos
01 Dec 2023, 12:13
Forum: Laravel package
Topic: Admin Js file extension to project
Replies: 2
Views: 65

Re: Admin Js file extension to project

Don't copy complete JS file but overwrite the function you want to change instead.
Also, never change the files in the ./vendor/ directory or you will burn in developer hell!
by aimeos
01 Dec 2023, 12:11
Forum: Laravel package
Topic: Customer's email change on his profile
Replies: 1
Views: 54

Re: Customer's email change on his profile

The email address may be changed if you use:

Code: Select all

$cntl = \Aimeos\Controller\Frontend::create( $context, 'customer' );
$cntl->get()->getPaymentAddress()->setEmail( '...' );
$cntl->store();
But not tested that before ...
by aimeos
01 Dec 2023, 12:07
Forum: Help
Topic: Multi tenancy email cronjob
Replies: 5
Views: 187

Re: Multi tenancy email cronjob

Guess, the artisan command is executed in a separate process and your changed in-memory config isn't used then.
by aimeos
30 Nov 2023, 07:30
Forum: Help
Topic: Cms forms issue
Replies: 1
Views: 38

Re: Cms forms issue

There has been a change in 2023.10.x-dev which fixes the issue. Please update using: composer req aimeos/ai-cms-grapesjs:2023.10.x-dev If you want to add reCaptcha, you need to extend the GrapesJS block for the contact form in the ./themes/admin/jqadm/custom.js file of your project-specific Aimeos e...
by aimeos
27 Nov 2023, 11:52
Forum: Laravel package
Topic: Display filter
Replies: 2
Views: 99

Re: Display filter

1.) Add a new attribute type named "Quantity" in the Types > Attribute 2.) Create attributes with code "120", "340", etc. in Catalog > Attribute for the new "Quantity" attribute type 3.) Assign the attributes to the relevant products in the Catalog > Product >...
by aimeos
27 Nov 2023, 11:32
Forum: Help
Topic: The product cannot be copied; it shows an error, and the image cannot be copied.
Replies: 3
Views: 104

Re: The product cannot be copied; it shows an error, and the image cannot be copied.

Can you please upgrade to 2023.10 LTS? Earlier 2023.x versions are not supported any more.
by aimeos
27 Nov 2023, 08:09
Forum: Laravel package
Topic: How to set mail from-name?
Replies: 6
Views: 429

Re: How to set mail from-name?

In that case, it's pretty easy and we've created a PR with the required changes. You can try yourself using:

Code: Select all

composer req aimeos/ai-laravel:2023.10.x-dev