I have created a new content element for slider. I have added these codes in my typo3 setup
EXT:rapigo\Configuration\TsConfig\Page\Mod\WebLayout\mod.tsconfig
mod.wizards.newContentElement.wizardItems.common {
elements {
rapigo_home_slider {
iconIdentifier = content-carousel-image
title = Home Slider
description = A content element to add one or more images
tt_content_defValues.CType = rapigo_home_slider
}
}
show := addToList(rapigo_home_slider)
}
EXT:rapigo\Configuration\TCA\Overrides\tt_content_my_extension_my_slider.php
Ext:rapigo\Configuration\TypoScript\myslider.typoscript
tt_content {
my_extension_my_slider < lib.contentElement
my_extension_my_slider {
templateName = HomeSlider
dataProcessing {
10 = TYPO3\CMS\Frontend\DataProcessing\FilesProcessor
10.references.fieldName = assets
}
}
}
All these codes enables a section in backend from where I can add slider content. But while redering it on front end there is an error
ERROR: Content Element with uid "26" and type "rapigo_home_slider" has no rendering definition!
I definitely missed something and I have no idea what I have to do. I am new in Typo3.
So my question is: 1) How could I define the template for my slider? Please also suggest the path where I have to write the code. 2) After it how could I get data from the content element so I can grab it from there and put it in my html design.
