InfusedWoo

Show Elementor Pop Up For Only Certain Products Based on iMember360 Conditionals – Works for dynamic Upsell offers

Build a pop up in Elementor. Create an iMember360 Conditional that evaluates to TRUE when the product you’re targeting is in the cart. For help creating other iMember360 Conditionals using ChatGPT, click here: https://wiki.trueproductions.com/article/chatgpt-prompt-for-creating-imember360-conditionals-in-php/ This inline conditional will evaluate to true if product ID 9192 is in the cart. To adapt for other uses, swap […]

InfusedWoo Page Redirect Not Working Fix

Elementor has section that needs to be changed. The Solution: To restore the redirect functionality, you’ll need to allow WooCommerce to handle the thank you page process again. Here’s how: Navigate to your Elementor WooCommerce settings Find the “Purchase Summary” page setting Clear/empty this field (see attached screenshot for reference) Save your changes   section […]

How to Disable Automatic Plugin Updates in WordPress

How to Turn Off Automatic WordPress Core Updates 1. Access your wp-config.php file in order to add this snippet: define( ‘WP_AUTO_UPDATE_CORE’, false ); To access the file, you’ll need to either use FileZilla (or another  File Transfer Protocol (FTP) solution) or the file manager in your web host’s cPanel. Once you have access, move to […]

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

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; }

SAM USA InfusedWoo Update Steps

Plugin update for infusedWoo to work with their setup. Update the following 2 files: Core > gateway.php Modules > ordercomplete.php Do the following below: – search for line with the following syntax: infusedwoo_infusion_order_title – remove the Woocommerce Order # from that line. – line should read: $order_title = apply_filters( ‘infusedwoo_infusion_order_title’, “{$order_num}”, $order ); – save […]