iMember360

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;       } } […]

LearnDash Course Registration imember360

In iMember360, you can go to EXTENSIONS, then LearnDash, and tell the plugin what page has the course grid, and it will enroll people on that page without making them refresh.

Elementor Popup Condition Based on Products in Cart

You need to create a function and put it e.g. in your child theme’s function.php. I have created a gist with the functions code, please see https://gist.github.com/DigitalFactoryCR/c95e26d10ba920db1caf2f05211da00c Once done that add the following PHP statement in your Conditional: is_in_cart( [ 977,694,693,692,691 ] ) You need to add another function e.g to your child theme: https://gist.github.com/DigitalFactoryCR/827bb567bd77cf4b3fe91e43046edb24 […]

iMember360 GA Tracker for Forms

You don’t have to put a value in, you don’t have to put the hidden forms in your form in Elementor. iMember360 will add the GA hidden fields automatically to your form. However, i see that the webform in Keap has an Infusionsoft URL “https://xl219.infusionsoft.com” but the webform in Elementor points to https://protect.spamkill.dev/v1 In order […]

LearnDash iMember360 Code to Auto-Enroll Courses

As you know, LearnDash doesn’t offer a full range of action/filter hooks. The only way to trigger an automatic enrollment without going to the course page is with a “trick”, as follows. To manually trigger an auto-enrollment, place the following code on the first page your members see after login you to simulate a visit […]

iMember Keap Password Sync Code

https://gist.github.com/DigitalFactoryCR/77251dca65924cab4c241c37653a576c Add this to your child theme’s function.php or create a simple plugin with that code. —– code.php

Best Shortcode For Users Adding Credit Cards

The shortcodes to use are: [i4w_user_creditcards] [i4w_user_add_creditcard] They should not be used on the same page/post. You should place a link to move between individual pages using those shortcodes.

LearnDash Course Management iMember360

All of your courses are set to the LearnDash Open course type. That means that any logged in user is enrolled into the course. So every user is enrolled into every course. iMember360 can’t override that default LearnDash behaviour. If you want to control enrolment using iMember360 and Infusionsoft tags you need to set the […]