Dölj admin-baren för prenumeranter
/** * 2) Dölj admin-baren för prenumeranter */ add_filter( 'show_admin_bar', function( $show ) { if (…
Prevent Powerpack Off Canvas from Breaking JavaScript loading
This prevents issues with Woo Block checkout loading credit card fields and other functionality breaking with…
ACF_KEYSMST_MSTCASECPT – TAB: CLINICAL ASSESSMENTS (v3.0 Modular)
/** * ============================================ * MST CASE - TAB: CLINICAL ASSESSMENTS (v3.0 Modular) * ============================================ * *…
Test snippet
This a test snippet
Delete Pending Donations
This script properly deletes all pending donations using WordPress functions ensuring all hooks fire and related…
gill-container-tracking.php
gill-container-tracking.php
Custom Countries
Illustrates how to add a custom list of countries
Generate a virtual coupon when order is completed.
This snippet will generate a new virtual coupon for a coupon that you've enabled virtual coupon…
Download count shortcode
Add download count shortcode with ID and Offset attributes
Only count last file
This plugin makes it so that All Access only increments the download counter if the customer…
Remove Product Notes For Specific Downloads
Remove a download's product notes from showing on the purchase confirmation page, the admin email, and…
Shipping label template
/** * The template for displaying the shipping label * * Override this template by copying…
Current Year
function current_year_shortcode() { return date('Y'); } add_shortcode('year', 'current_year_shortcode');