Search found 7457 matches

by aimeos
20 Sep 2023, 07:34
Forum: TYPO3 extension
Topic: Selection Variants and Image Display
Replies: 3
Views: 84

Re: Selection Variants and Image Display

Best option would be to add the code that is currently in the image view helper to the template and adapt it to your needs because the product ID isn't available in the image helper.
by aimeos
19 Sep 2023, 22:09
Forum: Laravel package
Topic: Keep basket even when user logs out and logs back in?
Replies: 3
Views: 78

Re: Keep basket even when user logs out and logs back in?

Currently it's not possible but the basket of the customer is stored in the mshop_order_basket table. There's currently just no way to get it back after re-login and you need to implement that yourself.
by aimeos
19 Sep 2023, 21:21
Forum: Help
Topic: 502 error response on new site ( Routing issue )
Replies: 3
Views: 55

Re: 502 error response on new site ( Routing issue )

Need more information and you should also have a look into the ./storage/logs/laravel.log file
by aimeos
18 Sep 2023, 21:39
Forum: Laravel package
Topic: custom payment mail
Replies: 3
Views: 60

Re: custom payment mail

It's only:

Code: Select all

/packages/<my-extension>/templates/controller/jobs/order/email/payment/html.php
by aimeos
18 Sep 2023, 21:35
Forum: Laravel package
Topic: How to init full process to create a site?
Replies: 2
Views: 47

Re: How to init full process to create a site?

You can use the code from the command in your own controller for example:
https://github.com/aimeos/aimeos-larave ... hp#L57-L65
by aimeos
18 Sep 2023, 21:32
Forum: Help
Topic: show EUR instead €
Replies: 5
Views: 1993

Re: show EUR instead €

Sorry, in the code from the template the link points to prefers another translation first:

Code: Select all

'i18n' => [
	'it' => [
		'client/code' => [
			'price:default' => ['%2$s %1$s']
		]
	]
]
by aimeos
18 Sep 2023, 21:28
Forum: TYPO3 extension
Topic: Selection Variants and Image Display
Replies: 3
Views: 84

Re: Selection Variants and Image Display

Guess, the thought behind was that variant images should be shown as soon as one variant attribute has been selected but in your case this doesn't work out well. You only want to show the variant image if all attributes are selected and only one variant article is left, don't you?
by aimeos
18 Sep 2023, 21:25
Forum: Help
Topic: Pass data from delivery service decorator to view
Replies: 5
Views: 13352

Re: Pass data from delivery service decorator to view

It makes no sense to define frontend options if you want to hide them. From you previous reply, I would guess that you want to the customers to choose if they want standard or express delivery.
by aimeos
18 Sep 2023, 21:22
Forum: Help
Topic: Aimeos SaaS Admin Panel for Managing and Adding Sites
Replies: 3
Views: 2561

Re: Aimeos SaaS Admin Panel for Managing and Adding Sites

This creates all default records for new top level sites. It doesn't clone anything, just adds the records to the database.
by aimeos
17 Sep 2023, 15:07
Forum: Laravel package
Topic: custom payment mail
Replies: 3
Views: 60

Re: custom payment mail

The controller/jobs templates must be in "packages/<my-extension>/templates/controller/jobs/order/email/payment/html" if you don't change their location in the manifest.php file of your extension.