I am working with the TYPO3 News system and the Formhandler Extension
I have some forms and they work completely fine on every page, but I can't insert it into a Newsdetail page.
Every form is saved into a temp Variable, like this:
temp.contactform < plugin.tx_formhandler_pi1
(And then follow all the settings like sender_email etc. which I didn't add here.)
So on every other page I insert the form under the menu "Template" like this and insert the plugin:
page.10.variables.form < temp.contactform
And in the Layout file I just call: <f:format.raw>{form}</f:format.raw>
The form appears and works just fine.
I tried to insert the TypoScript on the Detail page and also directly into plugin.tx_news and then write <f:format.raw>{form}</f:format.raw>
in Detail.html but it just doesn't insert my form.
For me it looks like the News Plugin doesn't allow custom temps. Because if I try to insert anything other than the form, e. g. simple text, as a temp, it also doesn't get inserted into the Detail page.
Google also didn't help me any further. Can you tell me if it's even possible to connect formhandler and News into one page?