Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter creativeenzymes

    (@creativeenzymes)

    @unitecms It works perfect now. Thanks you for saving my day.

    Thread Starter creativeenzymes

    (@creativeenzymes)

    Just 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.

    Thread Starter creativeenzymes

    (@creativeenzymes)

    Following 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 %}

    Thread Starter creativeenzymes

    (@creativeenzymes)

    Following 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>

Viewing 4 replies - 1 through 4 (of 4 total)