How to Show or Hide Content Automatically
Show or hide template sections with field checks, blank-value rules, and multi-part conditions.
Last updated
Was this helpful?
Was this helpful?
<!--RENDER='{{!Account.Customer_Type__c}}' == 'High Value' -->
<p><strong>VIP customer:</strong> Thank you for your continued business.</p>
<!--ENDRENDER--><!--RENDER='{{!Contact.Phone}}' != 'NULL' -->
<p>Phone: {{!Contact.Phone}}</p>
<!--ENDRENDER--><!--RENDER=( '{{!Account.BillingState}}' == 'CA' && '{{!Account.Active_Contract__c}}' == 'True' ) -->
<p>Include the California active-contract clause in this quote.</p>
<!--ENDRENDER--><!--RENDER=( '{{!Account.BillingState}}' == 'CA' || '{{!Account.BillingState}}' == 'OR' ) -->
<p>Apply the West Coast delivery language.</p>
<!--ENDRENDER--><!--RENDER='{{!Account.Industry}}' CONTAINS 'Finance' -->
<p>Include the finance compliance checklist with this document.</p>
<!--ENDRENDER--><!--RENDER={{!Opportunity.Amount}} > 10000 -->
<p><strong>Manager review required.</strong></p>
<!--ENDRENDER--><!--RENDER='{{!Case.Subject}}' NOT CONTAINS 'Urgent' -->
<p>Route this case through the standard workflow.</p>
<!--ENDRENDER--><!--RENDER=( '{{!Account.Type}}' == 'Customer' && '{{!Account.Industry}}' CONTAINS 'Finance' ) -->
<p>Apply the customer finance compliance clause.</p>
<!--ENDRENDER-->