TYPO3 svewap CleverReach with form extension and typoscript - typo3

i want use extension svewap/CleverReach with core form extension. I have typo3 7.6. I want create page for cleverreach in typoscript.
It is possible to use it in this way?
I should use finisher?
But finisher isn't avalible in my typo3 7.6 version.
Dokumentation page to my problem:
https://docs.typo3.org/typo3cms/extensions/cleverreach/UsersManual/Form/Index.html

It's not possible to use the form examples with TYPO3 7. It requires the new form extension which comes with TYPO3 8.

Related

How to create Fluid Extension Provider in TYPO3 v9 (2018)

We're currently struggling at creating Extension Provider with FluidPowered Typo3. This tutorial is outdated an we can't find any solution how to make Fluid Extension Provider from scratch. Also the 'builder' extension is not compatible with Typo3 versions higher than 8.5.
https://fluidtypo3.org/documentation/templating-manual/templating/provider-extension/generating-extensions.html
Is there any possibility to create Fluid Powered Extension Provider with Typo3 v. 9? Where are informations about custom extension provider files structure, controllers etc. ? The last post on Fluid website is from 2017.
You might want to look at this page instead: FluidTemplate documentation
And yes its short, but everything I could write is at that page. ;)

Typo3 Form Elements "Login Form" Not Visible

I have added a Default Login form of Typo3 Form Elements in a page. But it is not visible.
I'm using Typo3 8.7.x.
I have not added any CSS or JS.
What may the problem? is there a solution?
Thank you
The new form framework of TYPO3 8 can be used as frontend login form but this will not work out of the box. Instead, install the core extension "felogin". Don't forget to add the static TypoScript template of this extension to your TypoScript.
Furthermore, there is a documentation available: https://docs.typo3.org/typo3cms/extensions/felogin/
In New TYPO3 8.7 , it's replaced with Form extension (it's new ExtBase extension launch)
Please search form Form in your extension manager , you will find Form extension.
Checkout this screenshot:
If you still want to use the old form , please install this extension on your 8.7 version: https://extensions.typo3.org/extension/form_legacy/
Thanks
I hope it helps !!!

How can I insert html Code in Typo3 8.7 Form extension in a label or description Field

I want insert this code in a Label or Description Field of a Contact-Form Field:
test Page
But when I save the form, the HTML-Code was removed:
test Page
How can I deactivate the removing of HTML Code in Typo3 8.7 tx_form?
Thank you
In TYPO3 v8, EXT:form does not provide this out-of-the-box. You can use a custom form element to achieve this. Here is an example: https://github.com/tritum/form_element_linked_checkbox
The upcoming TYPO3 v9 could contain a slim configuration for the CKEditor RTE to the form labels. It would allow to add links or style texts. The agency TRITUM worked on this as part of the TYPO3 User Experience Week 2018 (T3UXW18). It has yet to be added to the core, though.
Source: https://twitter.com/tritum/status/988778861948174336

How to get rendered links of a HTML element in TYPO3 7.6

IN TYPO3 versions before 7.6 it was possible to render links inside the content element HTML by using the TypoScript
tt_content.html.parseFunc.tags.link < lib.parseFunc.tags.link
This does not work anymore since 7.6. How can it be solved?
If you use fluid_styled_content, override the HTML.html and want to use forms and have the Typo3 link tags <link>text</link> converted to html links, you will have to use this (at least this worked for me, both custom html forms were working and links were converted):
<f:format.htmlentitiesDecode>
<f:format.html parseFuncTSPath="lib.parseFunc">
{data.bodytext}
</f:format.html>
</f:format.htmlentitiesDecode>
There are a couple of possible solutions for this question.
1.) Use fluid_styled_content.
I guess that now fluid_styled_content instead of css_styled_content is used. Therefore the used TypoScript does not work anymore. A valid solution would be to switch back to css_styled_content. However that is the old ancient way and for newer projects you shouldn't do this.
2.) Override the template of fluid_styled_content.
If you open the template of fluid_styled_content and the HTML element, found at typo3/sysext/fluid_styled_content/Resources/Private/Templates/Html.html you will see
<f:format.raw>{data.bodytext}</f:format.raw>
this must be changed to
<f:format.html>{data.bodytext}</f:format.html>
Overriding is described in the docs, see https://docs.typo3.org/typo3cms/extensions/fluid_styled_content/7.6/Configuration/OverridingFluidTemplates/Index.html

TYPO3 NEOS - FLUID and EXTBASE

Is NEOS working like TYPO3 CMS (FLUID/EXTBASE) just with another layout ?
Can u add the same extension to NEOS and can u still make our own Backend Layouts ?
TYPO3 Neos is a completely new software, based on TYPO3 Flow. Conversion of extensions from Extbase to Flow/Neos should not be too hard, but you can't use the same code.
The architecture of TYPO3 Neos and TYPO3 CMS are completely different. While extra functionality for TYPO3 CMS is build as an extension (based on extbase and fluid) and directly integrated into the CMS, in TYPO3 Neos we have separate Flow packages which can be connected to TYPO3 Neos.
There are talks that in the future it will be possible to use flow packages for TYPO3 CMS, but nothing is decided yet.
Extbase extensions cannot be used in TYPO3 Neos. You have to rebuild the functionality as a Flow Package. However there is a similarity between Extbase and Flow, since Extbase is a backport of Flow. Fluid however can be used in Neos.