Search found 52 matches

by loeffe1
07 Jul 2020, 13:08
Forum: Laravel package
Topic: Get Mini Basket With Product Images also
Replies: 15
Views: 5567

Re: Get Mini Basket With Product Images also

The attribute is called order.base.product.mediaurl, not order.base.product.mediaUrl. I still had to edit the script to modify the path of the preview image but now it is working.
by loeffe1
07 Jul 2020, 11:01
Forum: TYPO3 extension
Topic: Show entire category tree starting from root
Replies: 5
Views: 2745

Re: Show entire category tree starting from root

Thanks, this will surely come in handy soon or later. For this current project it made more sense to use a DataProcessor to fetch the info from the mshop_catalog table. The category menu I was displaying needed to be accessible from anywhere on the page, not just from pages within /shop. So I wasn't...
by loeffe1
01 Jul 2020, 08:48
Forum: TYPO3 extension
Topic: Show entire category tree starting from root
Replies: 5
Views: 2745

Re: Show entire category tree starting from root

I reimported my categories and now all of them are displayed. However now I am running into a new problem where as first level the root category is shown, so my menu will look like this Root |-- Category 1 |-- Category 2 |-- Category 3 If setting the startid to the id of the root category, the root ...
by loeffe1
19 Jun 2020, 09:14
Forum: TYPO3 extension
Topic: Show entire category tree starting from root
Replies: 5
Views: 2745

Re: Show entire category tree starting from root

Yes, status is set to enabled for all of them.
by loeffe1
18 Jun 2020, 15:59
Forum: TYPO3 extension
Topic: Show entire category tree starting from root
Replies: 5
Views: 2745

Show entire category tree starting from root

I have a problem with the category tree. I have a bunch of nested categories like this: Categories |_ Root |_ Category 1 |_ Category 2 |_ Category 2-1 |_ Category 2-2 |_ Category 2-3 [...] |_ Category 3 [...] If I set the tree startid to the id of Category 2, all subcategories of that category will ...
by loeffe1
02 Mar 2020, 15:52
Forum: Laravel package
Topic: Get Mini Basket With Product Images also
Replies: 15
Views: 5567

Re: Get Mini Basket With Product Images also

How would we need to update the AimeosBasketMini updateBasket function to show the image without having to reload the page after adding a product to the basket? I have modified my mini basket template and added the below to the AimeosBasketMini updateBasket function but the image will only show afte...
by loeffe1
02 Mar 2020, 09:52
Forum: TYPO3 extension
Topic: Update mini cart ajax problem
Replies: 6
Views: 7611

Re: Update mini cart ajax problem

Ok, I found out this is a problem caused by my template. I might have removed a required class or incorrectly edited some js. With the default template it is working as intended. Sorry for the false alarm.
by loeffe1
02 Mar 2020, 09:36
Forum: TYPO3 extension
Topic: Update mini cart ajax problem
Replies: 6
Views: 7611

Re: Update mini cart ajax problem

I am seeing two request to the jsonapi. The response seems correct for both request. https://localtest.ddev.site/home/jsonapi?ai%5Bcontroller%5D=Jsonapi&ai%5Baction%5D=options { "meta": { "prefix": "ai", "content-baseurl": "/uploads/tx_aimeos" , ...
by loeffe1
28 Feb 2020, 08:36
Forum: TYPO3 extension
Topic: Update mini cart ajax problem
Replies: 6
Views: 7611

Re: Update mini cart ajax problem

Sorry for the late reply.
I have set the page of the json api in the content element settings, so that's not the cause of the problem.
by loeffe1
26 Feb 2020, 13:05
Forum: TYPO3 extension
Topic: Update mini cart ajax problem
Replies: 6
Views: 7611

Update mini cart ajax problem

My mini cart will not update when adding a product to the cart. The update function is being called (the modal window is displaying correctly) but it never reaches the line AimeosBasketMini.updateBasket(basket) . An error function added to the first ajax call will trigger, so for some reason this fi...