Search found 52 matches

by loeffe1
11 Jul 2023, 14:59
Forum: TYPO3 extension
Topic: Get stock in list and favorites
Replies: 6
Views: 40819

Re: Get stock in list and favorites

Thank you!
by loeffe1
22 Jun 2023, 08:00
Forum: TYPO3 extension
Topic: Get stock in list and favorites
Replies: 6
Views: 40819

Re: Get stock in list and favorites

I don't, because there isn't anything to retreive. I would expect stock to be available in getRefItems as it is the case with the other domains, but it's not in there.
by loeffe1
20 Jun 2023, 07:46
Forum: TYPO3 extension
Topic: Get stock in list and favorites
Replies: 6
Views: 40819

Re: Get stock in list and favorites

I'm using version 22.10
by loeffe1
16 Jun 2023, 14:01
Forum: TYPO3 extension
Topic: Get stock in list and favorites
Replies: 6
Views: 40819

Get stock in list and favorites

I am trying to get the product stock but it just won't work. I tried setting client { html { account { favorite { domains { 1 = text 2 = price 3 = media 4 = attribute 5 = product 6 = stock } } } } } but am still only getting media, price and text. Also overwriting Aimeos\Client\Html\Account\Favorite...
by loeffe1
30 May 2023, 14:55
Forum: TYPO3 extension
Topic: Show all suppliers in filter dropdown
Replies: 1
Views: 23569

Show all suppliers in filter dropdown

Why are suppliers limited to 100 in the filter by $items = $cntl->compare( '==', 'supplier.id', $view->param( 'f_supid', [] ) ) ->slice( 0, 100 )->search()->replace( $items ); and is there any way to remove that limitation other than settings slice to a higher value in a custom class? In a perfect s...
by loeffe1
24 May 2023, 10:26
Forum: Laravel package
Topic: category name in the catalog detail page
Replies: 8
Views: 6817

Re: category name in the catalog detail page

I am now passing the categoryId the product was actually opened from to the detail view and am using it in my Decorator to work my way back through the category tree to get an actual, existing breadcrumb path and not just some random chaos. This was the only solution I could think of that fixes this...
by loeffe1
23 May 2023, 11:16
Forum: Laravel package
Topic: category name in the catalog detail page
Replies: 8
Views: 6817

Re: category name in the catalog detail page

This seems to be bugged when a product is added in several categories. The path fetched by $this->detailProductItem->getRefItems( 'catalog' ) is incorrect.

Also I see no way of getting the actual category the product was accessed through and translated labels of the categories.
by loeffe1
23 May 2023, 09:54
Forum: Laravel package
Topic: Get supplier id from product
Replies: 5
Views: 5745

Re: Get supplier id from product

I see his is how it is done in v22 0 = attribute 1 = attribute/property 2 = catalog 3 = media 4 = media/property 5 = price 6 = product 7 = product/property 8 = supplier 9 = supplier/address 10 = text But why do I need to explicitly add this, when it supposedly is the default setting?
by loeffe1
23 May 2023, 09:47
Forum: Laravel package
Topic: Get supplier id from product
Replies: 5
Views: 5745

Re: Get supplier id from product

I have added this to my typoscript catalog { detail { domains { 0 = attribute 1 = media 2 = media/property 3 = price 4 = product 5 = product/property 6 = text supplier { 0 = text 1 = media 2 = supplier/address } } } } However I am not getting the supplier on the product detail page. What am I doing ...