Search found 54 matches

by loeffe1
23 May 2023, 09:47
Forum: Laravel package
Topic: Get supplier id from product
Replies: 5
Views: 5841

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 ...
by loeffe1
05 May 2023, 07:54
Forum: TYPO3 extension
Topic: Strange behavior when replacing AimeosPage.onHideOffscreen
Replies: 2
Views: 16890

Strange behavior when replacing AimeosPage.onHideOffscreen

If I replace this function within $(function() { } in my custom js, it is not executed at all. If I replace it not nested, it is executed twice. Why is this happening? AimeosPage.onHideOffscreen = function() { $('.aimeos-overlay-offscreen').on('click', () => { console.log("click") $('.aime...
by loeffe1
02 May 2023, 14:30
Forum: TYPO3 extension
Topic: Filter by categories
Replies: 2
Views: 17005

Re: Filter by categories

This is great, thanks!
by loeffe1
26 Apr 2023, 08:48
Forum: TYPO3 extension
Topic: Filter by categories
Replies: 2
Views: 17005

Filter by categories

Is it possible to add a category filter? The requirement is to be able to select multiple categories through the filter and display products from these selected categories. It should work combined with other filters aswell, so it shoud be possible to filter by multiple categories and price for examp...
by loeffe1
20 Mar 2023, 08:30
Forum: Laravel package
Topic: how can get Bestsellers or Most Popular products?
Replies: 16
Views: 9674

Re: how can get Bestsellers or Most Popular products?

I have created a decorator in \Aimeos\MShop\Service\Provider\Decorator and included this function, but how can I use it? Aren't decorators configured via the Services tab and limited to Delivery and Payment?
by loeffe1
20 Mar 2023, 08:10
Forum: TYPO3 extension
Topic: Solr Plugin
Replies: 1
Views: 3955

Solr Plugin

Does the Ultra fast search with Solr plugin allow searching across the entire site and the aimeos catalog and products or is additional configuration required? If additional configuration is required, is it possible to use the Apache Solr for TYPO3 extension on top of your plugin to configure Solr a...
by loeffe1
17 Feb 2023, 11:34
Forum: TYPO3 extension
Topic: Set decimals and precision
Replies: 1
Views: 2956

Set decimals and precision

This doesn't seem to be working:

Code: Select all

plugin.tx_aimeos {
  settings {
    client {
      html {
        common {
          format {
            decimals = 0
            seperatorDecimal = ,
            seperator1000 = .
          }
        }
      }
    }
  }
}
by loeffe1
06 Feb 2023, 15:45
Forum: TYPO3 extension
Topic: Get attributes in product list in v22
Replies: 2
Views: 3212

Re: Get attributes in product list in v22

I had falsely added the attribute as an option instead of a characteristic.
by loeffe1
30 Jan 2023, 14:06
Forum: TYPO3 extension
Topic: Get attributes in product list in v22
Replies: 2
Views: 3212

Get attributes in product list in v22

With older versions I was able to get the product attributes via $myattribute = $productItem->getRefItems( 'attribute', 'myattribute', 'default' ); after having modified the catalog lists domains to include 'attribute'. With v22, $productItem->getRefItems() will show my attribute, however I don't kn...