Apply Default Theme Border Styling to Google Maps Element

.fusion-google-map { border-radius: var(–button-border-radius-top-left, 0) var(–button-border-radius-top-right, 0) var(–button-border-radius-bottom-right, 0) var(–button-border-radius-bottom-left, 0); border-color: var(–button_border_color); border-width: var(–button_border_width-top, 0) var(–button_border_width-right, 0) var(–button_border_width-bottom, 0) var(–button_border_width-left, 0); border-style: solid; }Continue reading

Add Class to Formidable Forms reCAPTCHA Fields

add_filter(‘frm_field_div_classes’, function( $classes, $field ){ // For all Captcha fields (includes reCAPTCHA v2/v3) if ( isset( $field[‘type’] ) && $field[‘type’] === ‘captcha’ ) { $classes .= ‘ captcha-no-margin’; } return $classes; }, 10, 2);Continue reading

lps-school-search-wpcode PHP

// Prevent duplicate execution if (defined(‘LPS_SCHOOL_SEARCH_LOADED’)) { return; } define(‘LPS_SCHOOL_SEARCH_LOADED’, true); // Output HTML and JavaScript ?> Nearby Schools Hide School Search Data from Florida Department of Education Pre-K Kindergarten Elementary Middle/Jr. High Senior High Combination Adult Other Pre-K Show…Continue reading

link cheng

document.addEventListener(“DOMContentLoaded”, function() { var bookingBtn = document.querySelector(“.o-header__booking-btns a[href=’https://hwc.wuyuanweb.com/reservation/’]”); if (bookingBtn) { bookingBtn.href = “https://new.link/reservation/”; // 將此處更改為新連結 } var remoteConsultationBtn = document.querySelector(“.o-header__booking-btns a[href=’https://hwc.wuyuanweb.com/remote-consultation/’]”); if (remoteConsultationBtn) { remoteConsultationBtn.href = “https://new.link/remote-consultation/”; // 將此處更改為新連結 } });Continue reading