Search found 8011 matches

by aimeos
27 Nov 2017, 22:13
Forum: Help
Topic: Selection Menu
Replies: 3
Views: 1908

Re: Selection Menu

Can you make a practical example?
by aimeos
27 Nov 2017, 22:12
Forum: Help
Topic: Good way to filter
Replies: 5
Views: 3213

Re: Good way to filter

What does "anchors" vs. "checkboxes" mean? You can configure showing products also from sub-categories in parent categories: https://aimeos.org/docs/Configuration/Core/client/html/catalog/lists/levels If you want to have more control, you can add your products to both categories ...
by aimeos
27 Nov 2017, 22:07
Forum: Help
Topic: JSON admin API File upload
Replies: 1
Views: 1085

Re: JSON admin API File upload

Unfortunately, not yet. If you are able to extend the Aimeos JSON admin API, we would love to receive a pull request :-)
by aimeos
27 Nov 2017, 22:05
Forum: Laravel package
Topic: Overwrite attributes
Replies: 9
Views: 3890

Re: Overwrite attributes

You can delete all entries in the mshop_product table using a proper SQL statement
by aimeos
27 Nov 2017, 22:04
Forum: Laravel package
Topic: Get all site products
Replies: 5
Views: 4659

Re: Get all site products

You must not use the "siteid" key for searching because it's already added from the locale object! In your example, this leads to SQL queries like "siteid=1 AND siteid=2" if your siteid value is different from the locale site ID and therefore to empty results. If you implement a ...
by aimeos
27 Nov 2017, 21:58
Forum: TYPO3 extension
Topic: Order Delivery Service: What am I missing
Replies: 1
Views: 1167

Re: Order Delivery Service: What am I missing

"process order delivery service" is for sending orders to e.g. an ERP system.

What you need is to
- set up the Aimeos advanced scheduler task
- and select "order payment e-mail"
by aimeos
27 Nov 2017, 21:55
Forum: Symfony bundle
Topic: Error 500 on Fresh install
Replies: 5
Views: 8961

Re: Error 500 on Fresh install

According to this post, the PHP 7.x is required for Twig 2.x:
https://stackoverflow.com/questions/418 ... f-string-s
by aimeos
27 Nov 2017, 12:36
Forum: Laravel package
Topic: Get all site products
Replies: 5
Views: 4659

Re: Get all site products

You can use the searchItem() method of the product manager to get all products: https://aimeos.org/docs/Developers/Library/Managing_items#Search_items To retrieve associated items like texts, prices, attributes, etc. pass the list of domain names you need as second parameter. This does also work for...
by aimeos
27 Nov 2017, 12:30
Forum: Laravel package
Topic: Cupon bug
Replies: 3
Views: 1407

Re: Cupon bug

OK, bug has been fixed and a new version released. Please execute "composer update" again and test if the problem is gone now in your installation.
by aimeos
27 Nov 2017, 12:25
Forum: TYPO3 extension
Topic: Using Aimeos\MShop\Product\Item\Standard in a custom EXT
Replies: 2
Views: 1644

Re: Using Aimeos\MShop\Product\Item\Standard in a custom EXT

We did a implementation of test classes to see if we get the same error but it works without problems and no additional autoloader is required. Here are the classes we've used: Item: <?php namespace Aimeos\MShop\Product\Item; class Test extends \Aimeos\MShop\Product\Item\Standard { } Manager: <?php ...