<style> .preorder_plan_regular { font-size: 20px; font-family: "RobotoCN"; font-weight: 400; margin-bottom: 36px; } .preorder_plan_regular strong { font-weight: 700; text-decoration: line-through; font-size: 26px; } .preorder_plan_title { margin-bottom: 42px; } .preorder_plan_name { margin-bottom: 36px; } .preorder_plan_spectial { margin-bottom: 18px; font-size: 24px; text-transform: uppercase; }</style>{% if editmode %}<section class="section_pricingtable"> <div class="number_section"> <div class="wrapper_innerpage">05</div> </div> <div class="wrapper_mainpage"> <div class="title16 smalltitle">GET STARTED TODAY</div> <h2 class="h2_long" id="pricingsection">{{pimcore_input('pricing_title', {placeholder:'Enter Here'} )}}</h2> <p>{{ "Choose Plan Category" }}:</p> {{ pimcore_relation("planCategory", { "types": ["object"], "subtypes": { "object": ["object"] }, "classes": ["PlanCategory"]}) }} <div class="pricingtable_bottom"><a class="button button_radius button_transparent_white" href="#" data-toggle="modal" data-target="#guideStep" >LET’S GET STARTED!</a></div> </div> <div class="pricingtable_scrolldown"> <div class="wrapper_innerpage"><a class="scrolldown title16" href="#"><span>SCROLL DOWN</span><i></i></a></div> </div></section>{% else %} {% set planCategory = pimcore_relation("planCategory").getElement() %} {% do pimcore_inline_script().appendScript("let planCategoryId ='"~planCategory.id~"'; ") %} {% set plans = planCategory.getPlans() %} {% if plans|length %} <section class="section_pricingtable"> <div class="number_section"> <div class="wrapper_innerpage">05</div> </div> <div class="wrapper_mainpage"> <div class="title16 smalltitle">GET STARTED TODAY</div> <h2 class="h2_long" id="pricingsection">{{pimcore_input('pricing_title', {placeholder:'Enter Here'} )}}</h2> <div class="preorder_plans"> {% for plan in plans %} <a class="preorder_plan" href="#" data-toggle="modal" data-target="#guideStep"> <div class="preorder_plan_title">{{plan.duration == 1 ? "30 DAY PLAN" : plan.duration~" MONTH PLAN"}}</div> {% if plan.property('regularTitle') %} <div class="preorder_plan_regular">{{plan.property('regularTitle') | raw}}</div> {% endif %} <div class="preorder_plan_name {{plan.getIsHighlightTitle ? 'preorder_plan_name_best':''}}">{{plan.title|raw}}</div> {% if plan.property('isSpecialEmployeeRate') %} <div class="preorder_plan_spectial">Special Employee Rate</div> {% endif %} <div class="preorder_plan_cost">${{plan.price|number_format(2)}}<span>per month</span></div> {% if(plan.offer|default(null))%} <div class="preorder_plan_offer">{{plan.offer|raw}}</div> {%endif%} <div class="preorder_plan_tip"> <div class="preorder_plan_tip_title"> MEMBERSHIP DETAILS:</div> <div class="preorder_plan_tip_text">{{plan.description|raw}}</div> </div> <div class="preorder_plan_select">SELECT THIS PLAN</div> </a> {% endfor %} </div> <div class="pricingtable_bottom"><a class="button button_radius button_transparent_white" href="#" data-toggle="modal" data-target="#guideStep" >LET’S GET STARTED!</a></div> </div> <div class="pricingtable_scrolldown"> <div class="wrapper_innerpage"><a class="scrolldown title16" href="#"><span>SCROLL DOWN</span><i></i></a></div> </div></section> {% endif %}{% endif %}