Search found 52 matches

by loeffe1
05 May 2023, 07:54
Forum: TYPO3 extension
Topic: Strange behavior when replacing AimeosPage.onHideOffscreen
Replies: 2
Views: 16826

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: 16930

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: 16930

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: 9448

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: 3882

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: 2905

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: 3147

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: 3147

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...
by loeffe1
27 Jan 2023, 14:29
Forum: TYPO3 extension
Topic: Wrapping divs in default layout breaks aimeos javascript
Replies: 2
Views: 3092

Wrapping divs in default layout breaks aimeos javascript

I have my content main section wrapped in a div to assign some necessary classes. This however breaks aimeos javascript: https://i.imgur.com/3WO9GmC.png https://i.imgur.com/gQLTHBY.png I tried setting a custom layoutRootPath for aimeos via plugin.tx_aimeos.view.layoutRootPaths.100 = [...] but this i...