Search found 15 matches

by frimi
30 Oct 2023, 11:40
Forum: Help
Topic: how do I connect product to catalog (category) items
Replies: 10
Views: 5404

Re: how do I connect product to catalog (category) items

Ah ok, thank you fpr help. I've checked the changelog but it 's really hard to find somthing. There are a lot small hints in the document, who lead in the git repository. A textbases description was - for me - not findable and to read hundreds of code lines ist not realy straight foreward...
by frimi
26 Oct 2023, 19:06
Forum: Help
Topic: how do I connect product to catalog (category) items
Replies: 10
Views: 5404

Re: how do I connect product to catalog (category) items

Hello. We have updatet our Aimeos / Typo3 installation to aimeos Extension 23.10.1 on Typo3 12.4.5 and i have a lot of things not working the same way. Could it be, that the managing of the realtions between product and the catalog has changed? If i add the relation on catalog_list table as learned ...
by frimi
18 Dec 2020, 10:54
Forum: Help
Topic: How to aviod HTML Tag removement on text item content
Replies: 3
Views: 1285

Re: How to aviod HTML Tag removement on text item content

Super, thank you. I'll try this. If I change that in my installation - what would happen on a upgrade of the shop extension?
by frimi
16 Dec 2020, 15:44
Forum: TYPO3 extension
Topic: Customer Group Specific Prizes
Replies: 4
Views: 2065

Re: Customer Group Specific Prizes

Hi nos3

I work on the same project as pat. I'm responsible for coding the import logic. Do you (or anybody else in this forum) have a hint for me, how to add programmatically groups to price items?

Thanks for your aid and kind regards, Michael
by frimi
15 Dec 2020, 14:27
Forum: Help
Topic: How to aviod HTML Tag removement on text item content
Replies: 3
Views: 1285

How to aviod HTML Tag removement on text item content

I create text items via $newTextItem = $textMgr->create(); $newTextItem->setType('long'); $newTextItem->setDomain('product'); $newTextItem->setLabel('Beschreibung'); $newTextItem->setContent('Text with some html <tags>'); In the Backend, all <tags> are removed. If I enter <tags> in the backend via R...
by frimi
15 Dec 2020, 05:27
Forum: Help
Topic: how do I connect product to catalog (category) items
Replies: 10
Views: 5404

Re: how do I connect product to catalog (category) items

I have still problems with the deleting of the relations. If I use a known id, it works fine. But how can I find/get/retrieve the id of the relation to delete dynamicly without loading all the relations first? What I have ist the product id (item) and the catolog item.
by frimi
14 Dec 2020, 18:40
Forum: TYPO3 extension
Topic: How to import/create images via Media Manager Class
Replies: 3
Views: 1797

Re: How to import/create images via Media Manager Class

hum, I store the image in a subdirectory as mentoined and set the url relative to uploads/tx_aimeos/

In the backend i see the media item of the product but there is no image shown.
by frimi
11 Dec 2020, 13:46
Forum: TYPO3 extension
Topic: How to import/create images via Media Manager Class
Replies: 3
Views: 1797

How to import/create images via Media Manager Class

Hello I can create new Media items via $newMediaItem = $mediaMgr->create(); and add them via a new list item to the desired product - so far, so good But how do I have to deal with the images itself? Where should I store the Images? What should I enter via $newMediaItem->setUrl()? Is it possible, to...
by frimi
04 Dec 2020, 15:26
Forum: Help
Topic: how do I connect product to catalog (category) items
Replies: 10
Views: 5404

Re: how do I connect product to catalog (category) items

Huh, it works :) Many thanks!

Now I need to delete catalog<->product relations. How can I do that?

$item->deleteListItem( 'product', $listitem );

How can i get the $listItem? As mentoined, getListItem() returns NULL
by frimi
20 Nov 2020, 09:15
Forum: Help
Topic: how do I connect product to catalog (category) items
Replies: 10
Views: 5404

Re: how do I connect product to calalog (category) items

Many thanks, that helps :) I do the job with $catItem->addListItem('product',$newCatListItem->setRefId($productId)) on the catalog item and it seems to work. In the backend looks all fine. To maintain the relations between the catalog items and the product I need to test, if there are existing relat...