[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 Quiz Certificate Generator

/** * FRS Quiz Certificate Generator * 1. Calculates Score Percentage [frs_quiz_percentage] * 2. Attaches the Certificate PDF to emails automatically */ // — PART 1: SCORE CALCULATOR SHORTCODE — // Usage in View: [frs_quiz_percentage field=”31471″ total=”6″ entry=”[id]”] add_shortcode( ‘frs_quiz_percentage’,…Continue reading