Category list image
Forum rules
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Category list image
Hello!
I need to add image to each category, but it must be visible in category list?
Second question is how to add video in long description of product?
Thank's & Best regards,
Goran
// Typo3 10.4.14 / Aimeos 20.10.7 / PHP 7.3 / Linux //
I need to add image to each category, but it must be visible in category list?
Second question is how to add video in long description of product?
Thank's & Best regards,
Goran
// Typo3 10.4.14 / Aimeos 20.10.7 / PHP 7.3 / Linux //
Re: Category list image
Use the catalog stage plugin and add an image to the category with type "stage".
If you have a link to Youtube or similar, you can embedd the tag within the text in the source view. The current CKEditor configuration will remove that if you save the product again so you need to add that configuration in the admin/jqadm/themes/custom.js file of your Aimeos extension for your project:
Code: Select all
Aimeos.editortags = 'div(*);span(*);p(*);iframe(*);';
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Category list image
1. Where and how I need to add category image?
2. Yes, I have added, but aill the same problem. If I do any changes in source have only
2. Yes, I have added, but aill the same problem. If I do any changes in source have only
Code: Select all
<iframe></iframe>
Re: Category list image
Add it here:
Strange, CKEditor should leave the attributes of the iframe intact with that settings.goransabo wrote: ↑12 Apr 2021, 11:03 2. Yes, I have added, but aill the same problem. If I do any changes in source have onlyCode: Select all
<iframe></iframe>
Look for "advanced content filter" of CKEditor to find out what the problem may be. The above setting sets CKEditor "extraAllowedContent" config.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Category list image

... just for info. I'm using Aimeos only on the one project and my knowledge about it is a small, very small ...
At global, the best shop software ever!!!
Re: Category list image
ok.
I have changed original admin.js, but video iframe still not work
2nd, new question is about adding and removing users from user group.
I found this
but now I don't understand how to implement it ... I have 15 users groups.
When somebody buy product, adding to user group work fine.
How to add decorator for removing from user group, if subscribing expired?
best regards to all
I have changed original admin.js, but video iframe still not work

2nd, new question is about adding and removing users from user group.
I found this
Code: Select all
controller/common/subscription/process/processor/cgroup/name = Mygroup
When somebody buy product, adding to user group work fine.
How to add decorator for removing from user group, if subscribing expired?
best regards to all

Re: Category list image
Like said, please have a look into the CKEditor documentation to find out how it must be configured correctly to keep the iframe attributes.
You don't need to configure your own subscription processor for customer groups. Just add the customer group as hidden attribute to the product and configure the cgroup processor to be used in your scheduler:goransabo wrote: ↑14 Apr 2021, 17:48 2nd, new question is about adding and removing users from user group.
I found thisbut now I don't understand how to implement it ... I have 15 users groups.Code: Select all
controller/common/subscription/process/processor/cgroup/name = Mygroup
When somebody buy product, adding to user group work fine.
How to add decorator for removing from user group, if subscribing expired?
Code: Select all
controller.common.subscription.process.processors {
0 = Cgroup
}
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
