iMember360

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

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

ChatGPT Prompt for creating iMember360 Conditionals in PHP

I used ChatGPT to create iMember360 conditionals to only show a pop up on the cart page when certain products are in the cart. Here’s that whole task from start to finish:  https://wiki.trueproductions.com/article/show-elementor-pop-up-for-only-certain-products-based-on-imember360-conditionals/ Here’s the prompt I used (You can see the original ChatGPT convo here, but I’m not sure if those stay forever, so […]

Lock Down Posts Created by Front-End Users

Hooked to POST CREATION and STATUS CHANGE   We do use  wp_insert_post() and wp_update_post() for creating and updating the custom post. We added the group access update upon every status change with these IDs: $_POST[‘group_access’] = array( 178, 182, 186, );     ====   Without seeing your code how you actually create the draft […]

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

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