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

Display Only Selected Countries on the Vendor Registration Form

add_action( ‘wp_enqueue_scripts’, static function () { $registration_page_id = (int) get_option( ‘wcv_signup_registration_page_id’, 0 ); if ( 0 === $registration_page_id || ! is_page( $registration_page_id ) ) { return; } $allowed_countries = array( ‘AU’, ‘GB’, ‘US’, ‘CA’ ); // ISO 3166-1 alpha-2 codes…Continue reading