Open External link to a new tab

This code snippet enhances a WordPress website by automatically opening external links in new tabs. When…

Body on Scroll

;(function ($) { $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll >= 5) { $("body").addClass("scroll-500"); $(".tm-header").removeClass("uk-blend-difference");…

JavaScript for Craft Picker

// Menu Toggle function toggleMenu() { const mobileNav = document.querySelector('.mobile-nav'); mobileNav.classList.toggle('active'); } // Close Menu on…

Subscription Status Shortcode

Adds a shortcode to display a short subscription status description for recurring payments.

Make Private Posts Visible to Subscribers

/* * Make Private Posts visible to Subscribers * Typically only visible to admin or editor…

Peter Beare
<10

Update Donation Summary

Often you might want to change the output of where a donation summary is outputted for…

Donation Form Email Check (Advanced)

If you need to do manual validation of an email when a donation is being submitted…

Number slider validation for multi page forms

This snippet outputs a small script that listens for the wpformsBeforePageChange event and stops the page…

<10

WP Simple Pay: Lower reCAPTCHA Threshold

Adjusts the reCAPTCHA v3 threshold for determining fraudulent interactions. 1.0 is very likely a good interaction,…

MemberPress: Display Current User’s Memberships Renewal Dates

This code snippet adds the new [mp_membership_renewal_date] shortcode. Adding this shortcode anywhere on the website displays…

1 67 68 69 70 71 227