Skip to content

Instantly share code, notes, and snippets.

@jack-arturo
jack-arturo / edd-hide-discount-code.php
Created March 27, 2025 05:41
Hide the discount code on the Easy Digital Downloads checkout and show the discount name instead
<?php
/**
* Show EDD discount name instead of code in checkout summary.
*/
function my_custom_edd_discount_display( $discount_html, $discount ) {
$discount = edd_get_discount_by_code( $discount );
if ( ! $discount ) {
return $discount_html;
@jack-arturo
jack-arturo / wpf-dont-apply-tags-subscription-renewal.php
Created March 12, 2025 03:18
Don't apply "active" tags during a WooCommerce subscriptions renewal
<?php
/**
* Don't apply tags on renewal
*
* @param array $apply_tags The tags to apply.
* @param string $status The status of the subscription.
* @return array The tags to apply.
*/
function dont_apply_tags_on_renewal( $apply_tags, $status ) {
@jack-arturo
jack-arturo / wpf-redirect-to-previous-lesson.php
Last active February 11, 2025 20:38
Redirects users back to the previous page when accessing a restricted LearnDash lesson
<?php
/**
* Redirects users back to the previous page when accessing a restricted LearnDash lesson
*
* @param string $redirect_url The redirect URL
* @param int $post_id The post ID
* @return string The modified redirect URL
*/
function my_learndash_redirect( $redirect_url, $post_id ) {
@jack-arturo
jack-arturo / edd-account-tweaks.php
Last active February 11, 2025 04:43
EDD Account Customization Shortcodes
<?php
// Excuse the mess :D
// we also make use of the [purchase_history] and [edd_subscriptions] shortcodes
function edd_account_content_hook_licenses( $output ) {
ob_start();
?>
@jack-arturo
jack-arturo / wpf-apply-tags-after-x-pageviews.php
Created December 10, 2024 15:43
Applies a tag after any 5 pages on the site are viewed
<?php
/**
* Track total page views across the site and apply a tag with WP Fusion if the view count exceeds 5.
*/
function wpf_track_total_page_views() {
// Replace with the WP Fusion tag name you want to apply
$wp_fusion_tag = 'Example Tag Name';
@jack-arturo
jack-arturo / wpf-apply-tags-based-on-visit.php
Last active December 9, 2024 22:09
Applies a tag after a user has visited a post or page more than X times
<?php
/**
* Track visits to a specific post or page and apply a tag with WP Fusion if the visit count exceeds 5.
*/
function wpf_track_post_visits() {
// Replace with the IDs of the posts or pages you want to track
$target_post_ids = array( 123, 456 );
@jack-arturo
jack-arturo / api.php
Last active November 4, 2024 16:06
Updated api.php endpoint with support for Salesforce
<?php
if ( ! isset( $_GET['wpf_action'] ) ) {
exit();
}
if ( ! defined( 'ABSPATH' ) ) {
// Normally ABSPATH isn't defined here, but this allows for overriding it with
// auto_prepend_file or by including this file via a bootstrap.
@jack-arturo
jack-arturo / edd-custom-parameters.php
Created December 19, 2023 17:19
Store additional customer parameters during an EDD license check
<?php
function store_additional_license_parameters( $response, $args, $license_id ) {
$data = array_map( 'sanitize_text_field', $_REQUEST );
if ( $response['license'] == 'valid' ) {
$user = get_user_by( 'email', $response['customer_email'] );
@jack-arturo
jack-arturo / wpf-fooevents-sync-multiple-event-fields.php
Created November 29, 2023 16:10
Syncs FooEvents event data to separate custom fields on the attendee's contact record for each event.
<?php
/**
* Utility function for getting any FooEvents attendees from a WooCommerce order
* @param WC_Order $order
* @return array Attendees
*/
function get_foo_attendees_from_order( $order ) {
$attendees = array();
@jack-arturo
jack-arturo / wpf-non-blocking-during-login.php
Last active September 27, 2023 11:11
Sends API calls non-blocking during login.
<?php
/**
* Sends API calls non-blocking during login.
*
* This is useful if your CRM has a slow API, it will allow the user to log in
* without any noticable delay. However, if the API is offline or fails to process
* the request, no error will be logged and there will be no indication it failed.
*
* @param array $parsed_args The HTTP API request args.