Bug #8351
pingback link tag is not set when using plugin.tx_t3blog_pi2
| Status: | New | Start date: | 2010-06-19 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - | |||
| Votes: | 0 |
Description
The pingback link tag is set in pi1\class.tx_t3blog_pi1.php (main function) but if you place your t3blog widgets via fe plugin (aka tx_t3blog_pi2) this file is not called.
I suggest moving function getPingbackUrl and header data addition to main function of pi1\widgets\blogList\class.singleFunctions.php.
Related issues
| duplicates T3BLOG - Bug #7976: missing pingbacklink if using static template "T3BLOG fun... | On Hold | 2010-05-29 |
History
Updated by Hauke Hain over 2 years ago
I solved this for now with the following TypoScript:
page.headerData.9090 = TEXT
page.headerData.9090 {
wrap = <link rel="pingback" href="http://www.mydomain.com/|" />
typolink {
parameter.data = TSFE:id
additionalParams = &eID=t3b_pingback
returnLast = url
}
}
You have to replace http://www.mydomain.com/ with your domain or modify the TS to insert your defined baseURL.
Updated by Felix Nagel over 2 years ago
This snippet works fine for me. Should be added to the default pi1 static template.