Questions tagged [fluid-styled-content]

67 questions
0
votes
2 answers

The contents of my new custom element do not appear in the front end but I can see them in the Database and on debugging

I have created a new custom element using the sitepackage builder, created a new table and built the TCA fields and it seemed to be going well, I could save content in my custom element (title, text, images) and find it in my database but when I try…
typolore
  • 3
  • 2
0
votes
2 answers

TYPO3: content element "plugin" -> custom fluid template

I work with EXT:news, inserting the plugin in the backend as content element on a page, I can override the fluid templates of the extension itself with my custom extension. But I remain with the rendering of a division, the header and 'general data'…
webman
  • 1,117
  • 15
  • 41
0
votes
2 answers

Access to variables in fluid_styled_content partials

I have cloned the file sysext/fluid_styled_content/Resources/Private/Partials/Media/Type/Image.html into my own template directory and set the constant to use that path. This works fine. Now I want to output the "source" metadata of the image (which…
0
votes
1 answer

TYPO3: pass table data from tt_address to fluid styled content element

I would like to output the data, from table tt_address in the database in an array and use it in my FluidStyledContent element. However, I only get an array with null. in my setup.typoscript file in the Data Processing part i use this code 30 { …
H.Solo
  • 79
  • 1
  • 11
0
votes
1 answer

typo3 9.5 - how to get rid of gray header box?

When I use my h1 and h2 styles in a text content element in typo3 9.5, they get nicely displayed as I want. However when I use the header field of the element, I get this grey box and not my h1 format. How can I configure typo3 to show h1 style…
Reto
  • 1,660
  • 3
  • 19
  • 31
0
votes
0 answers

Fluid style content "Menu of selected pages" subtitle // title

TYPO3 v. 9.5.15 fluid_style_content and menu_pages I'm using the TYPO3 Menu element "Pages - Menu of selected pages". As default Title is used. How can I change this so Subtitle is used ? Like this: subtitle // title Before I could do something…
stig
  • 445
  • 1
  • 4
  • 9
0
votes
1 answer

Get Page Name/ID of Content Element in Backend Edit View

I'm new to Typo3. Inside the Configuration section of my own Content element I need the ID or name of the Content element's page. How would you implement that? I already tried to use flux:field.input but I dont know what to do with typoscript.
shm_sl
  • 1
  • 1
0
votes
2 answers

Typo3 Fluid renders html in the frontend instead of including the html to the homepage

i am trying to use Typo3 Fluid with Backendlayouts. But instead of rendering the Content Elements it renders the Html of the Content elements. For example i have a simple Text-Element in the Backend with "some text". It will show

some text

0
votes
0 answers

i am having probably an issue in the stream function

my code below is supposed to plot the stream function around a body where i decided to put vortices all over the body to indent it in addition to the uniform flow to the stream function .For a simple stream function i am able to get a plot but for…
0
votes
2 answers

Add custom elements to TYPO3 as hidden by default?

I have an installation with multiple websites. Each site has a site package with custom fields and content elements that are specific to that site. But the custom fields and content elements are shown on all sites. In tt_content.php I add a custom…
user500665
  • 1,220
  • 1
  • 12
  • 38
0
votes
2 answers

How to get the value of TYPO3 backend_layout in your fluid content element?

I need to get the value of the field backend_layout in my fluid content element. Via I get the value in my page template, but not at the level of the content element.
0
votes
1 answer

fluid template: render image only if it exists

How can I use f:if to see if an image exists on the server before trying to render it? I have tried the following without success:
Melanie
  • 1
  • 1
0
votes
1 answer

Render content elements from records field in a fluid template?

I have a custom content element that uses the records field. How can I put the records in this field into my fluid template? I have tried doing this: ext_example < lib.contentElement ext_example { templateName = MyTemplate dataProcessing { …
user500665
  • 1,220
  • 1
  • 12
  • 38
0
votes
1 answer

'Unknown column' error when adding custom fields in TYPO3?

I am trying to add two new fields to the header area of all the content elements, but when I try to save the element with text in those fields I get this error: An exception occurred while executing 'SELECT `ext_field1` FROM `tt_content` WHERE `uid`…
user500665
  • 1,220
  • 1
  • 12
  • 38
0
votes
1 answer

Render image in fluid template if it exists?

How can I use f:ifto see if an image exists before trying to render it? I have tried the following without success: {f:if(condition: page.files.0, then: ' style="background-image:url({f:uri.image(image:page.files.0, width:300c,…
user500665
  • 1,220
  • 1
  • 12
  • 38