creativeenzymes
Forum Replies Created
-
Forum: Plugins
In reply to: [Unlimited Elements For Elementor] HTML is showing as text@unitecms It works perfect now. Thanks you for saving my day.
Forum: Plugins
In reply to: [Unlimited Elements For Elementor] HTML is showing as textJust to add that the accordion field type is text. There are some html tags on the post. When I fetch data on plugin it shows raw html but it should compile the html tags.
Forum: Plugins
In reply to: [Unlimited Elements For Elementor] HTML is showing as textFollowing is Post Accordion
`{% if post == false %}
No Accordion Items Found
{% else %}
<html>
<div class=”uc_material_accordion” id=”{{uc_id}}”>
<div class=”uc_container”>{% for item in current_post.cf_repeater %}
<div class=”uc_ac_box”>
<div class=”uc-heading uc_trigger-{{uc_id}}” id=”{{uc_id}}”>
{% if show_icon == “true” %}
<span class=”{{icon}} uc_dactive bbb ue_accordion_icon”></span>
<span class=”{{icon_active}} uc_active bbb ue_accordion_icon”></span>
{% endif %}
<span class=”ue_heading_title”>{{item.title}}</span>
</div>
<div class=”uc_content”>
<span>{{item.description}}</span></div>
</div>{% endfor %}
</div>
</div></html>{% endif %}
Forum: Plugins
In reply to: [Unlimited Elements For Elementor] HTML is showing as textFollowing is Block Quote Card:
`<div class=”blox-border-left-blockquote” style=”text-align:left;box-shadow: none !important;”>
<div class=”blox-content” style=” border-color:{{border_color}}; “>
<!–<i style=”background-color:{{icon_bg_color}}; ” class=”{{icon}}”></i>–>
{% for item in current_post.cf_quotes %} <div class=”blox-box” style=”font-family: Georgia; color:#857785; font-size: 16px; font-weight: 400;”>
{{item.quote}}
</div>
<div style=”font-family: Georgia; color:#857785; font-size: 12px; font-weight: 400;” class=”blox-author”>{{item.cite}}</div>{% endfor %}
</div>
</div>- This reply was modified 3 years, 8 months ago by creativeenzymes.