Search found 213 matches

by kdim95
20 Oct 2022, 11:23
Forum: Laravel package
Topic: Theme navigation duplicated after "composer upgrade"
Replies: 6
Views: 1201

Re: Theme navigation duplicated after "composer upgrade"

I have created a theme extension, but the issue persists when I switch to the new theme. Steps to reproduce: 1) Create a mytheme Laravel theme 2022.x extension here: https://aimeos.org/extensions 2) Upload the theme to packages/mytheme 3) Execute composer update 4) Switch to the new theme from the s...
by kdim95
20 Oct 2022, 08:12
Forum: Laravel package
Topic: Theme navigation duplicated after "composer upgrade"
Replies: 6
Views: 1201

Re: Theme navigation duplicated after "composer upgrade"

I think I wasn't changing the files in the ./vendor directory, but they somehow updated.
I could have touched a few lines and reverted the changes in the package, but that was just to make sure I was overriding the correct files in my extension. Could that have caused the package to update somehow?
by kdim95
19 Oct 2022, 23:35
Forum: Laravel package
Topic: Theme navigation duplicated after "composer upgrade"
Replies: 6
Views: 1201

Re: Theme navigation duplicated after "composer upgrade"

I fixed it by overwriting vendor/aimeos/ai-client-html with the one from my backup, I don't understand what went wrong here, but the issue seems to be fixed now.
by kdim95
19 Oct 2022, 08:31
Forum: Laravel package
Topic: Theme navigation duplicated after "composer upgrade"
Replies: 6
Views: 1201

Theme navigation duplicated after "composer upgrade"

Laravel framework version: 9.36.2 Aimeos Laravel version: * 2022.07.2 PHP Version: 8.1.9 Environment: Linux The main menu appears to be duplicated after executing the " composer upgrade " command. Before the issue appeared, I've been changing around some theme settings. I was attempting to...
by kdim95
18 Oct 2022, 08:14
Forum: Laravel package
Topic: Replace translation not working
Replies: 2
Views: 629

Re: Replace translation not working

Thank you, it works now
by kdim95
17 Oct 2022, 08:36
Forum: Laravel package
Topic: Replace translation not working
Replies: 2
Views: 629

Replace translation not working

Laravel framework version: 9.26.1 Aimeos Laravel version: * 2022.07.2 PHP Version: 8.1.9 Environment: Linux I'm following the documentation for replacing translations here: https://aimeos.org/docs/2022.x/developer/translations/#replace-translations I am attempting to replace the translations found i...
by kdim95
06 Sep 2022, 04:05
Forum: Laravel package
Topic: How to remove the category id from the routes and keep only the category url segment?
Replies: 3
Views: 10461

How to remove the category id from the routes and keep only the category url segment?

Laravel framework version: 9.26.1
Aimeos Laravel version: * 2022.07.2
PHP Version: 8.1.9
Environment: Linux

My category links are like this in the main menu:
/category~{id}

How can I make them only:
/category
by kdim95
02 Sep 2022, 15:17
Forum: TYPO3 extension
Topic: Get product category
Replies: 14
Views: 14460

Re: Get product category

Since 2022.01, you can get the categories using: $producItem->getRefItems( 'catalog' ); I think this works but should they be appearing under -node ? The other items, for example $mediaItems have them under #bdata . How do I get them from inside the -node ? By the way, I noticed that I am posting i...
by kdim95
02 Sep 2022, 14:42
Forum: TYPO3 extension
Topic: Get product category
Replies: 14
Views: 14460

Re: Get product category

Use the methods of the item instead: $product->getCatalogItems(); $product->getStockItems(); Check the product item interface for reference: https://github.com/aimeos/aimeos-core/blob/master/lib/mshoplib/src/MShop/Product/Item/Iface.php#L27-L47 Laravel framework version: 9.26.1 Aimeos Laravel versi...
by kdim95
29 Aug 2022, 09:52
Forum: Laravel package
Topic: How to create subparts with searchable tables?
Replies: 1
Views: 518

How to create subparts with searchable tables?

Laravel framework version: 9.26.1 Aimeos Laravel version: * 2022.07.2 PHP Version: 8.1.9 Environment: Linux I have been trying to copy this subpart Product/Orders for a while, but it feels like I'm not getting anywhere. LlvXBrZ.png I have created a subpart with its own template, but I'm not sure how...