Infusionsoft / Keap

Split Full Name Field in Infusionsoft

Tuesday’s Tip: Use a single field for first and last name with an Infusionsoft web form It is well known that reducing the number of fields on your forms almost always increases the number of submissions. One way to do this is to combine all the name fields (salutation, first name, middle name, last name, […]

JDelay Anything at Custom Date/Time Field in Infusionsoft

Put On Page: [i4w_offset_jdelay from=”[i4w_date format=’U’]” to=”[i4w_date date='[i4w_db__Show1DateTime]’ format=’U’]”] Create Custom Shortcode: Regarding iMember360 create a custom shortcode named i4w_offset_jdelay using this code: [i4w_set diff=”[i4w_exec]$diff = (:to:)-(:from:);echo $diff;[/i4w_exec]”] [i4w_jdelay delayshow=”{:diff:}”] display this on page [/i4w_jdelay]

Sync/Make Infusionsoft and WooCommerce Order Numbers

add_filter(‘woocommerce_order_number’, ‘ov_iw_woocommerce_order_number’,10,2); function ov_iw_woocommerce_order_number($last_id, $wcorder) { $wcid = $wcorder->id; $infusion_order_id = get_post_meta( $wcid, ‘infusionsoft_order_id’, true ); if($infusion_order_id) return $infusion_order_id; else return $last_id; }

Infusionsoft Code to Affect Other People

DOWNLOAD THE FILES This code will allow you to pass a tag and a field to populate, then find all contacts with that tag, update the field for each contact, and then fire a goal that you specify.

Override Price in WooCommerce for iMember360 Users

function return_custom_price($price, $product) { IF (i4w_has_tag(‘1330’)) : { global $post, $blog_id; $price = get_post_meta($post->ID, ‘_regular_price’); $post_id = $post->ID; $price = i4w_get_contact_field(‘_HalfofShowCost’); return $price; } ELSEIF (i4w_has_tag(‘1328’)) : { global $post, $blog_id; $price = get_post_meta($post->ID, ‘_regular_price’); $post_id = $post->ID; $price = i4w_get_contact_field(‘_HalfofShowCost’); return $price; } ELSEIF (i4w_has_tag(‘1332’)) : { global $post, $blog_id; $price = get_post_meta($post->ID, ‘_regular_price’); […]

iMember360 User Directory View Profile Button

[i4w_member_dir tagid=’110′ fields=’,FirstName,LastName,Email,Phone1,_Industry,Company,JobTitle,_ShirtSize,_DietaryRestrictions,_HotelAccommodations,Id’ header_labels=’,First Name,Last Name,Email,Phone,Industry,Company,Title,Shirt,Diet,Hotel’ pagelength=’500′]

KKOP Resources

https://sites.google.com/keap.com/kkop-resources/home