My goal is to create extension using extension builder in TYPO3 7.6.2 version. I created Category Product extension from extension builder document, it works perfect except upload single image.
But I have to create functionality to add multiple images to single product and display images carousel on frontend. But extension builder does not work with file uploads.
I am new in TYPO3, so I don't understand how to add multiple images to that? I read too many documents but did not found perfect solution.
I just want to know the process how to add multiple images to products?
Thanks in advance!
Finally I got the solution to this question.
Go to your extension and follow the steps -
/Classes/Domain/Model/YourModel.php
/Configuration/TCA/YourModel.php
Add field name in
array 'types'
and inarray 'columns'
add this -add
my_pictures varchar(255) DEFAULT '' NOT NULL,
Thats it ! Hope it will help someone.
Thanks