Search found 125 matches

by columbo
18 Sep 2023, 20:49
Forum: Laravel package
Topic: custom payment mail
Replies: 3
Views: 18726

Re: custom payment mail

manifest.php is unchanged: 'controller/jobs/templates' => [ 'templates/controller/jobs', ], ok, I put html.php in /packages/<my-extension>/templates/ controller/jobs /order/email/payment/html but no effect - still template form vendor/aimeos/ai-controller-jobs/.. is used I flushed cache with: php ar...
by columbo
17 Sep 2023, 10:49
Forum: Laravel package
Topic: custom payment mail
Replies: 3
Views: 18726

custom payment mail

Hi, I'd like to customize the standard payment mail. I copied html.php from: vendor/aimeos/ai-controller-jobs/templates/order/email/payment to: packages/<my-extension>/templates/order/email/payment/html and adapted to my requirements. in shop.php: 'controller' => [ 'jobs' => [ 'order' => [ 'email' =...
by columbo
07 Aug 2023, 18:58
Forum: Laravel package
Topic: Product URL in mini basket
Replies: 3
Views: 11368

Re: Product URL in mini basket

ok, now URLs are displayed,
but after adding another product to cart - without reloading the page - all product links are gone

I think .js (aimeos.js, basket-mini.js) has to be edited so that the url gets added to the prototype-item. But I can't find the product url in js.
by columbo
03 Aug 2023, 10:16
Forum: Laravel package
Topic: Product URL in mini basket
Replies: 3
Views: 11368

Product URL in mini basket

Hi, how can we add the product url in mini basket? As the url is not part of basket object I added data: {'include': 'product'}, parameter, in aimeos.js: fetch(jsonurl, { method: "OPTIONS", headers: {'Content-Type': 'application/json'} }).then(response => { return response.json(); }).then(...
by columbo
18 May 2023, 07:22
Forum: Laravel package
Topic: How to mark products, that are in basekt?
Replies: 1
Views: 1778

How to mark products, that are in basekt?

Hi, we'd like to mark or highlight products, that are already in the basekt. eg: add product B to basket go to product category page product A, B and C are displayed only product B should be marked with a green cart-badge What is your recommendation for doing this? Do we need a controller or manager...
by columbo
04 May 2023, 20:41
Forum: Laravel package
Topic: How to display custom media in basket view?
Replies: 4
Views: 3782

How to display custom media in basket view?

Hi, we are using two different product media types ("default" and "custom"). On basket and checkout page the custom media should be displayed. How can we select the custom media type here (\packages\myext\templates\client\html\common\summary\detail.php): <img src="<?= $this-...
by columbo
31 Mar 2023, 08:53
Forum: Laravel package
Topic: Payment mail multiple bcc recipients
Replies: 1
Views: 1079

Payment mail multiple bcc recipients

I'm trying to send payment mails to multiple bcc recipients in shop.php: 'jobs' => [ 'order' => [ 'email' => [ 'payment' => [ 'bcc-email' => ['mail1@gmx.com','mail2@gmx.com'], ], ], ], ], But email is sent to last recipient (mail2@gmx.com) only. I tried with ' , " as string, array - nothing wor...
by columbo
27 Mar 2023, 09:40
Forum: Laravel package
Topic: order base number
Replies: 3
Views: 1806

Re: order base number

is this still valid for 2022.10?
  1. the current order number is eg. 30
  2. set mshop_order.id to 1.000
  3. created next order and the order number was 31
Thank you!
by columbo
17 Jan 2023, 22:47
Forum: Laravel package
Topic: How to automatically save baskets in 2022.10
Replies: 5
Views: 1829

Re: How to automatically save baskets in 2022.10

I'm using Laravel Fortify, I don't have AuthenticatedSessionController.php in /app/Http/Controllers/Auth (only in /vendor/laravel/fortify/src/Http/Controllers) After some research I found Laravel Fortify LoginResponse and I'm now trying to repopulate the basket there https://laravel.com/docs/9.x/for...
by columbo
10 Jan 2023, 09:03
Forum: Laravel package
Topic: How to automatically save baskets in 2022.10
Replies: 5
Views: 1829

Re: How to automatically save baskets in 2022.10

Thank you. I made a few tests and it seems as table mshop_order_basket gets already update with every basket change - either a new entry added or the existing one update (already without a Basket Plugin) But I'm still wondering how to repopulate the stored baskets from mshop_order_basket back to the...