[DEBUG] SiteGround Purge Scheduling

add_filter(‘pre_schedule_event’, function ($pre, $event /*, $wp_error */) { if (is_object($event) && isset($event->hook) && $event->hook === ‘siteground_optimizer_purge_cron_cache’) { $bt = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 18); $lines = []; foreach ($bt as $f) { $fn = (isset($f[‘class’]) ? $f[‘class’] . ($f[‘type’] ?? ”) : ”)…Continue reading

Cloudflare Gravity Forms fix

add_filter( ‘wp_inline_script_attributes’, function ( $attributes, $javascript ) { if ( strpos( $javascript, ‘gform.’ ) ) { $attributes[‘data-cfasync’] = ‘false’; } return $attributes; }, 10, 2 );Continue reading

FRS Universal KPI System

/** * ============================================================================== * FRS UNIVERSAL KPI SYSTEM * Contains: * 1. Smart Group ID Logic (Owner + Member + Admin checks) * 2. KPI Cards Shortcode [kpi-fire-frm-stats-for-group] * 3. Form Helper Shortcodes [my_current_group_id] & [pmpro_groupid] * ============================================================================== */ //…Continue reading