Infusionsoft / Keap

i4w_date – use math to add time to date in a custom field, not just add to today’s date

As shown in https://docs.imember360.com/webhooks/i4w_date The basic HTTP post only adds time to whatever the current date is and stores it in the target field. For example, the post below will add 2 weeks to today’s date, and store it in the custom field Next Meeting. https://yoursite.com/?i4w_date=YOUR_SECURITY_KEY&target=_nextmeeting&operation=plus%202%20weeks If you want to add time to whatever date […]

Create Custom OAuth Access for InfusedWoo Keap apps

InfusedWoo shares tokens with all other InfusedWoo apps, unless we set up Custom OAuth. Need to do Custom OAuth going forward.   Instructions available here: https://app.tango.us/app/workflow/Connect-InfusedWoo-via-Custom-OAuth-Key-in-Keap-Developer-tools-3e70c5baa1f64b369a2d0702b8de03f4

How to find Merchant ID for Keap Payments to Add to WooCommerce

On the payment method screen in Keap, there’s a message at the top of the screen when Keap Payments is the active payment processor. It will look like the app ID, followed by a dash and a number. This number is the merchant ID that needs to be populated in WooCommerce. In the screenshot below, […]

Add Image to Keap/Infusionsoft Emails with Text On Top/Over the Image

<div style=”background-image: url(‘https://www.cretors.com/wp-content/uploads/2024/05/Cretors-Coupon-Template.png’); background-size: cover; height:600px; width: 600px;”> <div style=”font-size:20px; color: #EE3342; padding-top: 294px;”> ~Contact._SpecialOfferCouponCode~ </div> </div>

iMember Invoice Print all Sections

However, you can overwrite this in your theme’s CSS as following: .i4w-cportal-invoice-no-print {display:block;}   This was done based off of what they suggested originally, just that their suggestion wasn’t complete: To show the additional sections but still hide the print button on print you can use: @media print {       div.i4w-cportal-invoice-no-print{             display: block !important;       } } […]