TYPO3 include plugin in fluid - typo3

I have TYPO3 version 7.6.18, do you know how include extension plugin right on fluid template? I found this link Insert plugin into a fluid template?
but I can't understand how I can find path to my plugin ? There described something about some typoscript browser.. Can you tell me how to do it, please )

Normally all plugins are registered in the same location in typoscript, tt_content.list.20 - you'll just have to add your pluginname tt_content.list.20.your_plugin_name. If you're unsure you can use the typoscript object browser (in the backend module "template") to look the exact path up.

Related

How to add RTE (Rich Text Edit) for the text area in TYPO3 backend module extension template

I have a TYPO3 backend module extension. I want to replace the text area with RTE in the template.
Well, you can configure this with CKeditor plugin. You can follow the step below to make this happen,
1) You can add the JQuery plugin from TYPO3 core here:
sysext/rte_ckeditor/Resources/Public/JavaScript/Contrib/ckeditor.js
2) Load the plugin in the backend module, you can use the below link as a reference.
See: Reference
3) Add custom JS file to write your custom JQuery script (Just like step 2)
4) In your custom JS, initialize CKEditor.
$( 'textarea.editor' ).ckeditor(); // this is your HTML field
See: Reference
Also, you can look at the official document for configuring this.
Hope this will help you!

Typo3 No template was found for new FrontendForms

I'm experimenting a bit with Forms in TYPO 3 version 8.7.13
I have created a form in the typo 3 backend, all good and it looks good, however when I add the form to a page and the load the front page I get the error
Sorry, the requested view was not found.
The technical reason is: No template was found. View could not be resolved
for action "render" in class "TYPO3\CMS\Form\Controller\FormFrontendController".
Is there anything that needs to be added to the Typoscript config in order for them to work ?
You need to include the static template in your TypoScript template.
You have a TYPO3 form plugin on your page. See the details of the form system extension in the TYPO3 backend page module.
**Form No form selected.**
Apply the necessary yaml file to your form. Or hide or delete the form plugin.

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 !!!

Fluid with PhpStorm view helper can't be found

My PhpStorm IDE does not recognize the fluid view helper. Currently working with PhpStorm 2017.3.3
I installed the Fluid Plugin from sgalinski and added in the Schema and DTDs following xsd file https://fluidtypo3.org/schemas/fluid-master.xsd and linked it to following URI http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers
Does anyone know how I can fix this? It would be great when autocompletion would work for fluid html files
Try adding the Typo3 core as external library in your PhpStorm Projekt.
Have a look for these blog posts:
http://insight.helhum.io/post/85031122475/xml-schema-auto-completion-in-phpstorm
http://insight.helhum.io/post/130270697975/updated-fluid-schema-urls
You may also check out the PhpStorm Plugins - there is one available for FLUID.
https://www.sgalinski.de/typo3-produkte-webentwicklung/typo3-fluid-phpstorm-intellij/

How to place TYPO3 frontend output in anywhere

I am new to TYPO3 and creating a TYPO3 extension. Extension can be added to a given place by the BE using the wizard. No problem.
My question is how can I add/call extension manually any place I want. For example among text.
What i mean is like Joomlas Mambots. Call the extension inside {myextentionName} among text for example.
Please any idea/help with an example is kindly appreciate.
You can find the TypoScript definition for each plugin below tt_content.list.20.<plugin-key>.
On top of that, most plugins provide a fully working version below plugin.<ext-key>.
If all fails, you can use the USER object to call the plugin directly. You will find an example in one of the above paths, because that is what the plugins to after all.
You can use typoscript tree and plugin keyword with the extension name for example plugin.xxxx.pi1.