// CORS for WP REST API (handles GET + OPTIONS) add_action('rest_api_init', function () { remove_filter('rest_pre_serve_request', 'rest_send_cors_headers'); // avoid duplicates add_filter('rest_pre_serve_request', function ($value) { $origin = isset($_SERVER['HTTP_ORIGIN']) ? $_SERVER['HTTP_ORIGIN'] : '*'; // For strict security, replace $origin with your exact GHL domain, e.g. https://your-subdomain.mykajabi.com (example) header('Access-Control-Allow-Origin: ' . $origin); header('Vary: Origin'); header('Access-Control-Allow-Methods: GET, OPTIONS'); header('Access-Control-Allow-Headers: Content-Type, Authorization'); return $value; }); }); // Make sure OPTIONS requests return 200 quickly add_action('init', function() { if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'OPTIONS') { status_header(200); exit; } });
Skip to primary content

INtegrity First Corporation – Insurance Blog

INFormed Insurance Professionals

INtegrity First Corporation – Insurance Blog

Main menu

  • INF Home Page
  • INF Blog Home

Post navigation

← Previous Next →

What is an Aggregate Deductible?

Posted on November 23, 2020 by Ashley Andreis

What is an aggregate deductible on a legal malpractice insurance policy?

An aggregate deductible is nothing more than an annual deductible as opposed to a per claim deductible. That’s it!

This entry was posted in Legal Malpractice Insurance by Ashley Andreis. Bookmark the permalink.
Proudly powered by WordPress