CMS Development

stinesandberg
メンバー

Export to template not working(?)

解決

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 いいね!
1件の承認済みベストアンサー
valerajoey
解決策
参加者 | Platinum Partner
参加者 | Platinum Partner

Export to template not working(?)

解決

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

元の投稿で解決策を見る

1件の返信
valerajoey
解決策
参加者 | Platinum Partner
参加者 | Platinum Partner

Export to template not working(?)

解決

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