mve*_*ter 0 typo3 caption typoscript twitter-bootstrap-3 typo3-6.2.x
我正在尝试将图像标题链接到Typo3 6.2上的图像链接.
我已经尝试了这个,但没有幸运:
tt_content.image.20.caption.1.stdWrap.typolink.parameter.field = image_link
Run Code Online (Sandbox Code Playgroud)
我有来自Bootstrap Package的这个typoscript:
...
singleCaption {
singleStdWrap {
wrap {
override.cObject = COA
override.cObject {
10 = TEXT
10 {
value = <figure class="image###CLASSES###">|###CAPTION###</figure>
override = <figure class="thumbnail###CLASSES###">|###CAPTION###</figure>
override {
if {
value = 1
equals.field = imageborder
}
}
}
}
}
}
caption {
wrap = <caption class="caption###CLASSES###"> | </caption>
wrap.override = <figcaption class="caption###CLASSES###"> | </figcaption>
}
}
...
Run Code Online (Sandbox Code Playgroud)
如何将我的字幕链接到图像链接?这应该是如此简单,但我无法弄清楚如何.谢谢你的帮助!
小智 6
试试这个,它可能会这样做:
tt_content.image.20.caption.1.stdWrap.typolink.parameter.data = file:current:link
Run Code Online (Sandbox Code Playgroud)