Persons 

Overriding the FLUID templates 

Persons: Listing 

This is how the templates are assigned in the higher_education_package:

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

If you want to overwrite the templates you can set new paths with a increased number.

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/
}
Copied!

Persons: Detail 

This is how the templates are assigned in the higher_education_package:

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

If you want to overwrite the templates you can set new paths with a increased number.

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/
}
Copied!

Persons: Contact Box 

This is how the templates are assigned in the higher_education_package:

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

If you want to overwrite the templates you can set new paths with a increased number.

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/
}
Copied!