Conversion rates increase with partner self-serve personalization on the landing page. Inflektion has a section in the partner dashboard where partners can add their name, quote, and image to be placed in a testimonial box on the lander.
Sample testimonial box:
Partner dashboard:
If a partner completes their Customizations, that personal information will appear on the Partner's landing page.
To set up your landing page for this testimonial box, simply add the following section (or similar if you prefer different CSS selectors) in the location where you want it to show (recommended higher up on the page as the second or third section on a page). It defaults to hidden, until our customization code replaces it when a partner has the appropriate fields filled out.
<section class="partner" id="PARTNER_CONTAINER" hidden>
<div class="container">
<div class="partner-content">
<div class="partner-image">
<img id="PARTNER_IMAGE" src="https://yourdomain.com/path/to/default.png" alt width="400" height="250">
</div>
<div class="partner-text">
<blockquote>
<p class="partner-quote" id="PARTNER_QUOTE">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam at tincidunt nunc. Aliquam fermentum arcu ut mattis ullamcorper. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Proin!</p>
<footer class="partner-name" id="PARTNER_NAME">— Partner Name</footer>
</blockquote>
</div>
</div>
</div>
</section>
Note, you can implement this in two different ways:
- Like above, where that module remains hidden if the partner hasn’t written a testimonial.
- Always shows a default testimonial. In this scenario, place the default testimonial to show, but don’t set it to be hidden by default. In this circumstance, the module will show the default testimonial if the partner hasn’t written a testimonial, and then replace it with theirs once they write one.
When that is set up on your lander, let your Inflektion onboarding specialist know, along with the code used. We will do the Global Customizations code on our side for the testimonial box to work.