'TYPO3 Every internal link (Navigation too) has a target=_blank
after an upgrade from v7.6 to v8.7 and executing the upgrade wizard every link in content and navigation has a target="_blank".
Can anybody help me?
Best regards
Solution 1:[1]
In your Typoscript:
- To open internal links in the same window:
- either set
config.intTarget = _self(TYPO3 11 documentation) - or completely remove
config.intTarget, as_selfis the default<a>targetattribute value
- either set
- To open external links in a new tab/window:
- set
config.extTarget = _blank(TYPO3 11 documentation)
- set
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Abdull |
