Infusionsoft / Keap

FIGO Pack Setup

Go to vr181 Hover over Infusionsoft icon and click on Campaign Builder under Marketing Click FIGO Sequence (ID 1180) Add tag of the pack name (Wait For FIGO Tag) Right click on a sequence Duplicate it Make it active Rename the sequence to follow the new pack name Connect the sequence to the Decision Diamond […]

Email Countdown Timer

EXAMPLE: https://leadvolunteers.com/email_countdown/gif.php?time=2019-06-10+17:00:00 FILES: EmailCountdown-master Instructions: https://litmus.com/community/learning/27-how-to-add-a-countdown-timer-to-your-email  

Disable PayPal on Infusionsoft Order Forms

Add this to the Customer HTML Header Area:   <script type=”text/javascript”>// <![CDATA[ jQuery(document).ready(function() { jQuery(“#checkoutWithPayPalLink”).hide(); jQuery(“#payPalType”).parent().hide(); }); // ]]></script>

Force Uppercase on form submission input

To force the input to be uppercase, you add this code after the type=”text”… onkeyup=”this.value = this.value.toUpperCase();” An example of this would look like the code below.. <input class=”infusion-field-input” id=”inf_custom_KioskCode” name=”inf_custom_KioskCode” placeholder=”Kiosk Code *” type=”text” onkeyup=”this.value = this.value.toUpperCase();” />

Force Uppercase/Lowercase Using PHP

To do that you would need to use a structure such as this: [i4w_set myvalue=”[i4w_db__xxx]”] {{:i4w_compare value1=’yyy’ cmp=’EQ’ value2=”[i4w_exec]echo strtolower(‘{:myvalue:}’);[/i4w_exec]”:}} TRUE {{:ELSE_compare:}} FALSE {{:/i4w_compare:}} where xxx is the custom field and yyy is your lower case comparison value.

Publishing a Landing Page to a Custom Domain

In order to publish a landing page (e.g. a survey page) to a custom domain (i.e. not infusionsoft.net), you will need to do the following: Publish a Landing Page to a Custom Domain After building the landing page, click next to get to the Launch Page Scroll to the bottom and you will see a […]

How to set up a simple campaign in Infusionsoft

https://www.screencast.com/t/nnXT1tRXv64   After the Campaign is set up you will need to add contacts. Go to contacts and hit the search button at the bottom. The check the top checkbox to select all contacts or you can select individual contacts.   The go to actions > Start/Stop campaign sequence Select the sequence you want to add […]

Credit Card Add Redirect

add_action(‘i4w_cportal_ccard_add_success’, ‘ccard_added’); function ccard_added($array) { header( ‘Location: http://www.apple.com‘ ) ; }   OR   add_action(‘iclient360_ccard_add_success’, ‘ccard_added’); function ccard_added($array) { header( ‘Location: http://www.apple.com‘ ) ; }