.. ================================================== .. FOR YOUR INFORMATION .. -------------------------------------------------- .. -*- coding: utf-8 -*- with BOM. Persons ======= .. only:: html Overriding the FLUID templates ------------------------------ Persons: Listing ^^^^^^^^^^^^^^^^ This is how the templates are assigned in the higher_education_package: .. code-block:: typoscript plugin.tx_highereducationpackage_personslisting { view { templateRootPaths{ 0 = EXT:higher_education_package/Resources/Private/Templates/ 10 = {$plugin.tx_highereducationpackage_personslisting.view.templateRootPath} } partialRootPaths { 0 = EXT:higher_education_package/Resources/Private/Partials/ 10 = {$plugin.tx_highereducationpackage_personslisting.view.partialRootPath} } layoutRootPaths { 0 = EXT:higher_education_package/Resources/Private/Layouts/ 10 = {$plugin.tx_highereducationpackage_personslisting.view.layoutRootPath} } } } If you want to overwrite the templates you can set new paths with a increased number. .. code-block:: typoscript plugin.tx_highereducationpackage_personslisting.view { templateRootPaths.20 = EXT:your_extension_key/Resources/Private/Templates/Persons/ partialRootPaths.20 = EXT:your_extension_key/Resources/Private/Partials/Persons/ layoutRootPaths.20 = EXT:your_extension_key/Resources/Private/Layouts/Persons/ } Persons: Detail ^^^^^^^^^^^^^^^ This is how the templates are assigned in the higher_education_package: .. code-block:: typoscript plugin.tx_highereducationpackage_persondetail { view { templateRootPaths { 0 = EXT:higher_education_package/Resources/Private/Templates/ 1 = {$plugin.tx_highereducationpackage_persondetail.view.templateRootPath} } partialRootPaths { 0 = EXT:higher_education_package/Resources/Private/Partials/ 1 = {$plugin.tx_highereducationpackage_persondetail.view.partialRootPath} } layoutRootPaths { 0 = EXT:higher_education_packages/Resources/Private/Layouts/ 1 = {$plugin.tx_highereducationpackage_persondetail.view.layoutRootPath} } } } If you want to overwrite the templates you can set new paths with a increased number. .. code-block:: typoscript plugin.tx_highereducationpackage_persondetail.view { templateRootPaths.20 = EXT:your_extension_key/Resources/Private/Templates/Persons/ partialRootPaths.20 = EXT:your_extension_key/Resources/Private/Partials/Persons/ layoutRootPaths.20 = EXT:your_extension_key/Resources/Private/Layouts/Persons/ } Persons: Contact Box ^^^^^^^^^^^^^^^^^^^^ This is how the templates are assigned in the higher_education_package: .. code-block:: typoscript plugin.tx_highereducationpackage_personscontactbox { view { templateRootPaths { 0 = EXT:higher_education_package/Resources/Private/Templates/ 10 = {$plugin.tx_highereducationpackage_personslisting.view.templateRootPath} } partialRootPaths { 0 = EXT:higher_education_package/Resources/Private/Partials/ 10 = {$plugin.tx_highereducationpackage_personslisting.view.partialRootPath} } layoutRootPaths { 0 = EXT:higher_education_package/Resources/Private/Layouts/ 10 = {$plugin.tx_highereducationpackage_personslisting.view.layoutRootPath} } } } If you want to overwrite the templates you can set new paths with a increased number. .. code-block:: typoscript plugin.tx_highereducationpackage_personscontactbox.view { templateRootPaths.20 = EXT:your_extension_key/Resources/Private/Templates/Persons/ partialRootPaths.20 = EXT:your_extension_key/Resources/Private/Partials/Persons/ layoutRootPaths.20 = EXT:your_extension_key/Resources/Private/Layouts/Persons/ }