CMS Development

stinesandberg
Membro

Export to template not working(?)

resolver

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 Avaliação positiva
1 Solução aceita
valerajoey
Solução
Participante | Parceiro Platinum
Participante | Parceiro Platinum

Export to template not working(?)

resolver

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

Exibir solução no post original

1 Resposta 1
valerajoey
Solução
Participante | Parceiro Platinum
Participante | Parceiro Platinum

Export to template not working(?)

resolver

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