Search found 8470 matches
- 27 Jan 2025, 11:00
- Forum: Help
- Topic: [SOLVED] How to enable B2B/B2C extention (AI-Sites) - instruction for newbe
- Replies: 2
- Views: 1427
Re: How to enable B2B/B2C extention (AI-Sites) - instruction for newbe
The configuration is correct if you inserted it at the correct position in your ./config/shop.php file. Make sure that you clear the cache with "php artisan aimeos:clear". If it's still not working, check if the store sites are really sub-sites of the default site and the products are adde...
- 27 Jan 2025, 10:06
- Forum: TYPO3 extension
- Topic: Does own extension really overwrite all translations?
- Replies: 1
- Views: 1221
Re: Does own extension really overwrite all translations?
If you have these lines in your manifest.php file of your own extension, overwriting currencies should work too: 'i18n' => [ 'admin' => 'i18n', 'admin/ext' => 'i18n', 'client' => 'i18n', 'client/code' => 'i18n', 'controller/common' => 'i18n', 'controller/frontend' => 'i18n', 'controller/jobs' => 'i1...
- 27 Jan 2025, 10:03
- Forum: Help
- Topic: Hide variant product on jqadm product list page
- Replies: 1
- Views: 1058
Re: Hide variant product on jqadm product list page
In the backend it't not possible to hide variant articles by default but you can set the filter to selection products only.
- 24 Jan 2025, 13:33
- Forum: Help
- Topic: How to transfer back money by PayPalExpress (not backend)?
- Replies: 4
- Views: 2210
Re: How to transfer back money by PayPalExpress (not backend)?
The customer is receiving again the original invoice in the email and in the attached pdf and not something like a credit note (in german: Gutschrift, e.g. with negative values). Have I perhaps overlooked something? And the email subject is still the same. But I think I can change this easily in th...
- 24 Jan 2025, 13:27
- Forum: Help
- Topic: [SOLVED] Howto add extentions (instructions for newbe)
- Replies: 4
- Views: 2194
Re: Howto add extentions (instructions)
Edit the "requires" section of your existing composer.json and add the extensions you want to install like this: "aimeoscom/ai-<name>": "~2024.10", e.g.: "aimeoscom/ai-sites": "~2024.10", "aimeoscom/ai-customergroups": "~2024.10",...
- 24 Jan 2025, 13:23
- Forum: Laravel package
- Topic: Upgrade Laravel Aimeos from 2021.10 to 2024.10
- Replies: 1
- Views: 1290
Re: Upgrade Laravel Aimeos from 2021.10 to 2024.10
The upgrade process is described here: https://aimeos.org/docs/latest/laravel/setup/#process Also, you have to upgrade your own code and you have to look at the changelog to check where your code needs to be adapted: - https://aimeos.org/docs/latest/changelog/2022.x/ - https://aimeos.org/docs/latest...
- 24 Jan 2025, 13:15
- Forum: TYPO3 extension
- Topic: Order ID in email subject instead of invoice no
- Replies: 5
- Views: 16933
Re: Order ID in email subject instead of invoice no
You can add it to the ext_localconf.php if your project specific Aimeos extension.
- 23 Jan 2025, 09:41
- Forum: TYPO3 extension
- Topic: Categories instead of Products? (trying to add multiple products to category)
- Replies: 15
- Views: 17117
Re: Categories instead of Products? (trying to add multiple products to category)
The URL looks OK and should return categories. Is that the case in the response?
- 23 Jan 2025, 09:35
- Forum: Help
- Topic: How to transfer back money by PayPalExpress (not backend)?
- Replies: 4
- Views: 2210
Re: How to transfer back money by PayPalExpress (not backend)?
Here you can see the API calls for a refund:
https://github.com/aimeos/ai-admin-jqad ... #L221-L255
https://github.com/aimeos/ai-admin-jqad ... #L221-L255
- 23 Jan 2025, 09:32
- Forum: Help
- Topic: [SOLVED] Howto add extentions (instructions for newbe)
- Replies: 4
- Views: 2194
Re: Howto add extentions (instructions)
This is very basic stuff when working with composer (getcomposer.org). Just run "composer update" to install the extensions. Afterwards, run "php artisan aimeos:setup" to update the database.