Overview
These fields allow you to personalize the website for each partner. Inflektion's personalization system will replace the field with the actual value for the partner whose landing page is being viewed. Integrate partner personalization on your landing page to enhance conversion rates by displaying partner-specific information on their partner landing page automatically.
Category | Field Name | Field Description |
Core | {COUPONCODE} | The coupon code assigned to the partner. |
Core | {PROMOSHORT} | A short description of the promotion offered by the partner, so that you can have different partners offer different discount amounts. |
Co-Branding | {PARTNERNAME} | The name of the partner, used in the testimonial box and other co-branding areas. |
Co-Branding | {PARTNERTITLE} | The title or role of the partner (useful for accreditations, or positions for B2B partners) |
Co-Branding | {PARTNERIMAGESQUARE} | The partner's profile image in a square format. |
Co-Branding | {PARTNERIMAGECIRCLE} | The partner's profile image in a circular format with the rest being transparent. |
Co-Branding | {PARTNERQUOTE} | A quote from the partner, typically used in the testimonial box. |
Co-Branding | {FOLLOWERTYPE} | How the partner referrers to their audience (e.g. Listeners, Followers, Users, etc.). |
Favorite Product | {FAVORITE_NAME} | The name of the partner's favorite product. |
Favorite Product | {FAVORITE_PRODUCT_ID} | The unique product ID of the partner's favorite product. |
Favorite Product | {FAVORITE_DESCRIPTION} | The product description of the partner's favorite product. |
Favorite Product | {FAVORITE_PRICE} | The price of the partner's favorite product. |
Favorite Product | {FAVORITE_COMPAREPRICE} | The compare-at price of the partner's favorite product (typically shown with a strikethrough). |
Favorite Product | {FAVORITE_HANDLE} | The handle (URL slug) for the partner's favorite product. |
Favorite Product | {FAVORITE_PDPURL} | The full URL to the product detail page of the partner's favorite product. |
Favorite Product | {FAVORITE_IMAGE_COUNT} | The number of images available for the partner's favorite product. |
Favorite Product | {FAVORITE_IMAGE_NN} | Replace NN with the image number, from 1 onwards. For example, {FAVORITE_IMAGE_1}. |
Field Availability
The Core fields will always be available for use, whereas the Co-Branding and Favorite Product fields will only be available for partners that have completed that content in their "Customizations" tab of the Partner Portal. Also, the Favorite Product fields will only be available if you are using Shopify or have integrated a product feed. For more information on integrating the Favorite Products, please review this article
Filters
In order to make sure the fields you use are available, you can use filters in JSON format. Here's an example of how this has been implemented for a testimonial box:
[{
"filter_option" : "page_path",
"filter_value" : "/pages/path-to-lander"
},{
"filter_option": "fields_are_set",
"filter_value": "PARTNERIMAGECIRCLE,PARTNERQUOTE,PARTNERNAME"
}]
Integrate Partner Personalization on your Landing Page:
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. Here is additional information on how to add the partner customizations to your landing page: Integrate Partner Personalizations
Sample testimonial box:
<section class="partner" id="PARTNER_CONTAINER" hidden>
<div class="container">
<div class="partner-content">
<div class="partner-image">
<img id="PARTNER_IMAGE" src="about:blank" alt width="400" height="250">
</div>
<div class="partner-text">
<blockquote>
<p class="partner-quote" id="PARTNER_QUOTE"></p>
<footer class="partner-name" id="PARTNER_NAME"></footer>
</blockquote>
</div>
</div>
</div>
</section>
Note: You can implement this in two different ways:
- The 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. 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.