Search found 7922 matches

by aimeos
23 Jun 2015, 07:13
Forum: Help
Topic: Retrieve the category of a product
Replies: 8
Views: 9546

Re: Retrieve the category of a product

[quote="Yvler"The problem is that we're using this on a productlist page, so we'd have to query for all the item id's :)[/quote] The most efficient way is to add all product IDs of that list page to your query (compare() also accepts an array as third parameter), execute that query once an...
by aimeos
22 Jun 2015, 20:59
Forum: Laravel package
Topic: Admin rebuild : getting/creating/updating data
Replies: 17
Views: 10771

Re: Admin rebuild : getting/creating/updating data

We've written some documentation that explains this in more detail and in different environments:
http://aimeos.org/docs/Laravel/Extend_A ... os_objects
by aimeos
22 Jun 2015, 11:52
Forum: Help
Topic: Retrieve the category of a product
Replies: 8
Views: 9546

Re: Retrieve the category of a product

Is it possible to retrieve the category of a product? In the breadcrumb of the detail page of the shop, the category is echo'd. But I don't seem to find how this works :) Product can be in several categories, so there's no 1:1 relationship. You can retrieve the categories of a product by using the ...
by aimeos
22 Jun 2015, 09:28
Forum: Help
Topic: Get Parent Id from catalog
Replies: 1
Views: 5418

Re: Get Parent Id from catalog

I am trying to get the Parent item from a Catalog item through the parentid, however there doesn't seem to be a getParentId function available. I also tried with other functions (like searchItems) with no success whatsoever. Is there any way I am missing to get this parentid/item? The catalog items...
by aimeos
19 Jun 2015, 16:48
Forum: TYPO3 extension
Topic: E-Mail text for delivery etc
Replies: 1
Views: 2679

Re: E-Mail text for delivery etc

One more time it's me. How can I change the text of the E-Mails? Where nad how can I change the templates? A link to the corresponding docu qould be enough :-) (hope so) Everything is translatable and the e-mails are no exception. You can overwrite the translations in TYPO3 like described here: htt...
by aimeos
19 Jun 2015, 13:33
Forum: TYPO3 extension
Topic: Problem with sending scheduled e-mails
Replies: 22
Views: 12783

Re: Problem with sending scheduled e-mails

WahnM wrote:Here is the task. Anything wrong?]
No, your task seem to be totally fine.
The main failure you can do is to execute the e-mail related tasks in the general Aimeos scheduler too.
by aimeos
19 Jun 2015, 13:31
Forum: TYPO3 extension
Topic: Problem with sending scheduled e-mails
Replies: 22
Views: 12783

Re: Problem with sending scheduled e-mails

I have found "Item with ID "" in "product.id" not found" in the madmin_log, but the producty have IDs?! Those log entries are from the front-end because they have a request ID, so your scheduler tasks seem to be correctly configured. Are e-mails sent at all, e.g. if yo...
by aimeos
19 Jun 2015, 10:05
Forum: TYPO3 extension
Topic: Problem with sending scheduled e-mails
Replies: 22
Views: 12783

Re: Problem with sending scheduled e-mails

In Roberts installation we've seen a misconfiguration by executing the e-mail jobs in the standard Aimeos scheduler task too. This causes log entries in the madmin_log table due to missing settings. Maybe there are also some hints in your log table.
by aimeos
16 Jun 2015, 12:46
Forum: TYPO3 extension
Topic: Problem with sending scheduled e-mails
Replies: 22
Views: 12783

Re: Problem with sending scheduled e-mails

The problem was a NULL value for the country ID that caused the the Zend translator implementation to generate a warning. Could you please install this version and try again: http://aimeos.org/fileadmin/download/aimeos_2.2.3.zip It should fix the problem and will be the base for the next minor relea...
by aimeos
16 Jun 2015, 09:48
Forum: Laravel package
Topic: Admin rebuild : getting/creating/updating data
Replies: 17
Views: 10771

Re: Admin rebuild : getting/creating/updating data

Actually, it's very simple. Implement a basic Laravel controller ( http://laravel.com/docs/5.1/controllers#basic-controllers ) and in the actions, get the Aimeos context, create the manager you need and hand over the data you've received from the manager (or save/delete items using the managers): na...