There is a conflict between two installed extentions in one page. I want to disable one of the extentions only for this specific Page.
Is there a way to accomplish this? Maybe somehow in Backend Templates?
There is a conflict between two installed extentions in one page. I want to disable one of the extentions only for this specific Page.
Is there a way to accomplish this? Maybe somehow in Backend Templates?
Depending on the way the extensions are included you might be able to deactivate the rendering of one extension.
Most extensions are configured in typoscript, where you can clear the corresponding part in an extension template (or TS condition) for your page.
either you deactivate the extension specific part (
plugins.my_extension >
)or the inclusion in the page rendering (
page.100 >
if the extension was included likepage.100 < plugin.my_extension
)or clear the configuration for plugins as subtree of tt_content
tt_content.list.20.my_extension >
The way is dependent on your extension and might fail if the inclusion is done in other ways (e.g. hooks, signals)
No, there are no way. Extensions can only disable for the complete TYPO3 installation.
EDIT: Here is a way to disable this extension for a single pages like news page with typoscript.
On the page where you want to disable the extension you can create a template where you disable the extension by TypoScript:
This works recursive, that means all sub-pages of the page where this snippet is included in a template are concerned too. If you want to enable the plugin on a sub-page again, you've to include there the TypoScript of the extension.
It's also possible to include the extension's TypoScript only on a few pages and not in the root-page. But the configuration is always inherited and has to be inversed if the plugin shall be activated or deactivated on sub-pages.
If you look in the setup.txt https://github.com/jonathanheilmann/ext-jh_opengraphprotocol/blob/master/Configuration/TypoScript/setup.txt
You should be able to deactivate it with
In your TypoScript for that page.