CMS Development

stinesandberg
Mitglied

Export to template not working(?)

lösung

Hi! 

 

So I've been trying to get the value from a text-field in a html-template into a <style>-tag. However when I try to retrieve the value I only get 0. 

 

<!--The text module I want to get value from.-->

{% text "background-opacity" label="Background Opacity", value="heihei" export_to_template_context=True %}


<!--How I'm trying to use the value-->
<style>
    	.header img{
       	opacity: {{ widget_data.background-opacity.value }} !important;
      }
    </style>


In inspect mode on .header img i get: 

opacity: 0 !important; 

 

This happens no matter what I do. I've tried to put the value into a h1 tag as well. I only get a 0 then as well. It does'nt show up on the page in the h1 tag either. It's more like it's null and not 0. 

0 Upvotes
1 Akzeptierte Lösung
valerajoey
Lösung
Teilnehmer/-in | Platinum Partner
Teilnehmer/-in | Platinum Partner

Export to template not working(?)

lösung

try to use Underscore on your widget name

{{ widget_data.background_opacity.value }}

or you can try to open the developer option and search for the name of your fields if it really exists in the first place.  

Hope this works

Lösung in ursprünglichem Beitrag anzeigen

1 Antwort
valerajoey
Lösung
Teilnehmer/-in | Platinum Partner
Teilnehmer/-in | Platinum Partner

Export to template not working(?)

lösung

try to use Underscore on your widget name

{{ widget_data.background_opacity.value }}

or you can try to open the developer option and search for the name of your fields if it really exists in the first place.  

Hope this works