问题标签 [fluid-styled-content]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
typo3 - 使用流体样式内容,如何在 TYPO3 7.5 和 7 LTS 中创建自定义内容元素?
有人告诉我,使用新的 fluid_styled_content 系统扩展在 TYPO3 7.5 中为后端设置自定义的结构化内容元素是一件轻而易举的事。
看了sysext/fluid_styled_content
and之后sysext/backend
,我自己也弄不明白。有什么提示吗?
responsive-images - Typo3 7.6.2 LTS,带有流体样式内容和响应式图像(图片)
我想用 Typo3 7.6.2 LTS 和 fluid_styled 内容渲染响应式图像,如下所示:
对于 Typo3 6.2 LTS,我使用了 css_styled_content 并为此添加了以下 Typoscript:
但这不适用于最新的 Typo3 版本。
我想编辑fluid_styled_content 模板并使用viewhelper,但还没有响应式图像。
还有另一种可能解决这个问题(无需额外扩展)?
typo3 - TYPO3 7.6.2 fluid_styled_content 删除 div
我使用 TYPO3 7.6.2 和 fluid_styled_content。使用 Gridelements 我的代码如下所示:
如何删除"div id="?
如果我使用“css_styled_content”没有问题。
谢谢
typo3 - fluidcontent_core:在自定义内容元素中隐藏标题
我对 Typo3、Fluid 等很陌生,我无法解决以下问题:我不希望 fluidcontent_core 呈现我的自定义内容元素的标题。因此,我创建了一个具有适当布局的新模板,但标题仍然呈现。我已经找了一段时间了,找不到我的错误。如果有人可以帮助我,那就太好了!
我已经将 layoutRootPath 和 templateRootPath 添加到了 fluidcontetn_core 插件。在添加 CE 的模板中,我使用<v:content.render column="1" />
自定义内容元素的模板:
自定义内容元素的布局:
typoscript - 具有除 0、1、2 以外的 colPos 的 backend_layout 不起作用
我已经设置了一个发行版,它还为 backend_layouts 提供 PageTS。
这就是使用 TypoScript 分配内容的方式
问题是:
无论我做什么,我都不会在前端呈现 colPos 5。似乎只允许 colPos 0(main),1(left),2(right)。但是内容被保存到数据库中并且在 colpos 字段中有一个 5。colPos 5 没有任何结果。
我只使用 fluid_styled_content - 没有 css_styled_content。它包含在我的模板设置中分发之前。
更新 这是在 nginx 上使用 php7.0-fpm 和 mysql 5.6
忘了说kopf变量是用在Partial中的,所以和这里所说的 partial variable question完全一样的问题
typo3 - 自定义 CType 与 CType 列表和 list_type
在我的自定义 TYPO3 Extbase 扩展中,我创建了一个后端模块来管理人员记录。现在我需要一个内容元素来在前端显示记录。
我看到了两种方法来实现这一点:
- 使用 CType "list" 和自定义 list_type。为其他字段提供 FlexForm
- 为其他字段使用自定义 CType、FSC 数据处理器和 TCA
在 TYPO3 CMS 7.6 中实现这一目标的最佳、最具前瞻性的方法是什么?一个比另一个有什么(缺点)优势?
typo3 - Fluid_styled_content 的 MaxGalleryWidth
我试图更改MaxGalleryWidth
特定列的流体样式内容。
首先我在fluid_styled_content之前尝试了我如何做到这一点:
也使用maxGalleryWidth
inLOAD_REGISTER
没有效果。
这对我不起作用。比我尝试maxGalleryWidth
为 GalleryProcessor 设置参数,但这似乎没有任何效果:
最后我得到它只适用于一个override
和if
条件:
对我来说它看起来不对,还有其他方法可以在不使用的情况下正确实现它override
吗?
typo3 - TYPO3 - 流体样式内容包装元素
我想在自定义插件的整个输出的包装中添加一个自定义类。fluid_styled_content 生成<div id="c55">
标签。在那里我想添加在插件的 flexform 中定义的自定义类。
我是否必须覆盖 fluid_styled_content 包的文件 HeaderContentFooter.html 或者是否有针对该问题的不同解决方案。如果我覆盖该文件,我将无法访问插件的 flexform 值。
我感谢每一个帮助。
干杯
typo3 - IRRE relations from tt_content to tt_content in fluid styled content
I have a fluid_styled_content element and they have IRRE elements which are also fluid_styled_content elements. How can I get the IRRE elements?
At the moment I am trying to get them with a custom DataProcessor but I don't know how to actually get the elements. It looks like, that the parent element stores the amount of children and the children are storing the uid of the parent in the foreign_field. Any ideas?
I though about the ContentObjectRenderer
which I do have in the DataProcessor, but as I sad, I don't know how to actually get the elements. I tried $cObj->cObjGet
but it didn't worked.