Use Cases
WooCommerce + GoToWebinar API + Piggybacking On a Plugin
The objective is simply to have a completed sale via WooCommerce automatically register the customer for a webinar at GoToWebinar.com. The two main complicating factors… Read More »WooCommerce + GoToWebinar API + Piggybacking On a Plugin
Customizing Vimeography Pro #1 – Thumbnail Content
First of several posts intended to document this job…
Read More »Customizing Vimeography Pro #1 – Thumbnail ContentWordPress Put Request to Remote API
/** * SET SUBSCRIPTION ACCESS AT REMOTE API * Utilizes “PUT” method * {{}} = contents provided by API host/administration, remove brackets when replacing *… Read More »WordPress Put Request to Remote API
WordPress Return User Data by Remote Request with Bearer Authorization
/** * RETURN AN ARRAY OF USER DATA FROM REMOTE API * {{}} = contents provided by API host/administration, remove brackets when replacing *… Read More »WordPress Return User Data by Remote Request with Bearer Authorization
S2Member API – Signup Notifications
/* USING S2 NOTIFICATIONS API * ADD SUBSCRIPTION DETAILS FOR USERS WITH 100% DISCOUNTS * using Signup Notification URL https://wmhca.org/?s2_signup_notification=yes&user_email=%%payer_email%%&coupon=%%coupon_code%% */ add_action( ‘init’, ‘s2_signup_notification’… Read More »S2Member API – Signup Notifications
Simple WordPress “Loginout or Register” Menu
A simple, very lightweight login or logout menu that also adds an option for logged-out users to visit a registration/sign-up page. At some point we can follow up with a much more advanced and complicated approach involving re-direction and javascript.