Search found 7600 matches

by aimeos
05 Dec 2023, 09:59
Forum: TYPO3 extension
Topic: Enable B2B Mode
Replies: 1
Views: 32

Re: Enable B2B Mode

Use this setting for net prices in the mshop.php configuration file of your own Aimeos extension:

Code: Select all

return [
	'price' => [
		'taxflag' => false
	]
];
by aimeos
04 Dec 2023, 08:50
Forum: Laravel package
Topic: Google Search Console
Replies: 1
Views: 52

Re: Google Search Console

Google lists that issues for the list views, which are not really relevant because the catalog detail view contains most of the missing pieces (at least the product parts, the merchant details are not stored in machine readable form in the Aimeos database).
by aimeos
02 Dec 2023, 14:14
Forum: Laravel package
Topic: Can't Overide template
Replies: 1
Views: 42

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: 78

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: 78

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: 2
Views: 87

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: 215

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: 43

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: 110

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 >...