Search found 12 matches

by claude27
08 Nov 2024, 11:53
Forum: TYPO3 extension
Topic: How can I update a list item like text content
Replies: 6
Views: 49267

Re: How can I update a list item like text content

Thank you very much @aimeos! That was the right clue. Now I was able to complete the update action. For anyone who needs an example, here is the source code of the function: /** * Action for updating an aimeos product * @param \Unterleitner\Sitepackage\Domain\Model\Event $event * * @return void */ p...
by claude27
07 Nov 2024, 11:45
Forum: TYPO3 extension
Topic: How can I update a list item like text content
Replies: 6
Views: 49267

Re: How can I update a list item like text content

PS: I managed to overwrite (update) a modified text item of a product: $contentManager = MShop::create($context, 'text'); $refId = 744; // example Id $text = $contentManager->create()->setId($refId)->setContent($event->getDescription())->setType('name')->setLanguageId('de')->setLabel('name/de'); $co...
by claude27
06 Nov 2024, 10:42
Forum: TYPO3 extension
Topic: How can I update a list item like text content
Replies: 6
Views: 49267

Re: How can I update a list item like text content

Thank you! Unfortunately I didn't take a step forward. $listItems or $product->getListItems (the item which should be loaded from the product which is saved in the database) is always empty. Could it be because $product is in my class of type Aimeos\MShop\Product\Item\Standard but the function expec...
by claude27
04 Nov 2024, 22:15
Forum: TYPO3 extension
Topic: How can I update a list item like text content
Replies: 6
Views: 49267

How can I update a list item like text content

Hi, How can I please update a list item like text, price or categories via a php controller? My goal is to create, modify and delete events by (TYPO3) frontendusers. Creating and Deleting is actually working. I managed to create functions in the controller class to create and delete products and a f...
by claude27
04 Nov 2024, 18:47
Forum: TYPO3 extension
Topic: adding stocklevel by PHP controller to new product
Replies: 2
Views: 28167

Re: adding stocklevel by PHP controller to new product

Thank you very much! That was the solution.
by claude27
01 Nov 2024, 10:35
Forum: TYPO3 extension
Topic: adding stocklevel by PHP controller to new product
Replies: 2
Views: 28167

adding stocklevel by PHP controller to new product

Hi, I've created a secured area where frontend users can add events (for which later places will be sold with aimeos). Now I want to synchronize it automatically with the Ameos shop, starting now with creating new aimeos product items by a controller. I managed it already partially (title, type and ...
by claude27
22 Oct 2024, 13:42
Forum: Help
Topic: How to order products which are not in stock
Replies: 2
Views: 22180

Re: How to order products which are not in stock

Thank you! It works now as expected.
by claude27
09 Oct 2024, 14:02
Forum: Help
Topic: How to order products which are not in stock
Replies: 2
Views: 22180

How to order products which are not in stock

Hi, I want to create a waiting list for event products. So it would be perfect if the customer could order products which are no longer in stock. At the moment the customer can click on the button "add to basket" but in the basket the number of ordered items is automatically reset to zero,...
by claude27
20 Sep 2024, 11:25
Forum: TYPO3 extension
Topic: Translation (localisation) not working after update
Replies: 14
Views: 81615

Translation (localisation) not working after update

After an update of aimeos/aimeos-typo3 from 24.4.2 to 24.7.2 by composer the labels in the frontend are no longer translated in german (The translation in the backend of the aimeos shop is working). For version 24.7.2 it is the same. E.g. instead of "In den Warenkorb" the label is "Ad...
by claude27
16 Sep 2024, 10:26
Forum: Help
Topic: How to sort event products by start date in the frontend?
Replies: 5
Views: 13011

Re: How to sort event products by start date in the frontend?

I've created now a pull request. As it's the first time I pull to an official package I hope I made it right. Unfortunately I didn't manage to put the 2 commits in one pull request, so you will see 2 pull requests.