Type: php
Days of the Week Filter Fix (Events List Block)
// 1) Send the checked “Days of the Week” values to the server – the block’s // own JS never does this, it only masks already-loaded events with them. add_action( ‘wp_enqueue_scripts’, function () { if ( ! wp_script_is( ‘sc-frontend-blocks-event-list-js’, ‘registered’…Continue reading
AI
AI
AI
AI
Untitled Snippet
Exclude Common Scripts from SiteGround Speed Optimizer JS Minification
add_filter( ‘sgo_js_minify_exclude’, ‘js_minify_exclude’ ); function js_minify_exclude( $exclude_list ) { // Required as of WC Stripe Gateway v10.8.4 due to JS conflict on certain machines (Windows 11 conflict confirmed) $exclude_list[] = ‘wc-stripe-upe-classic’; // For classic/shortcode checkout $exclude_list[] = ‘wc-stripe-blocks-integration’; // For…Continue reading
zVideo Background (testing)
// Shortcode to display video in background of element // Example: [idxjarallax height=”50vh” video_source=”https://player.vimeo.com/video/791389345?h=f99fa401c1&autoplay=1&loop=1&title=0&byline=0&portrait=0&background=1&dnt=1″ image_source=”https://napa.idxcentral.net/wp-content/uploads/2024/03/banner-e.jpg”] function jarallax_shortcode($atts) { $atts = shortcode_atts(array( ‘height’ => ‘100vh’, ‘video_source’ => ‘https://player.vimeo.com/video/791389345?h=f99fa401c1&autoplay=1&loop=1&title=0&byline=0&portrait=0&background=1&dnt=1’, ‘image_source’ => ‘https://napa.idxcentral.net/wp-content/uploads/2024/03/banner-e.jpg’ ), $atts, ‘idxjarallax’); $height = esc_attr($atts[‘height’]); $video_source = esc_url($atts[‘video_source’]); $image_source…Continue reading
shop recommendation page
if (1==1) : if(!isset($disable_cats)) $disable_cats=false; if(!isset($disable_tags)) $disable_tags=false; // Fixed typo from original script if(!isset($filter)) $filter=false; if(!isset($title)) $title = “arc”; if(!isset($site)) $site = “db-bauzeitung”; // Updated to match your new utm_source requirement #$layout = get_post_meta(get_the_ID() , ‘science_layout’ , true); $desc =…Continue reading