Untitled Snippet
https://watchvivo.com/wp-json/wp/v2Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
https://watchvivo.com/wp-json/wp/v2Continue reading
https://www.figma.com/make/T8Dp7RmUzWGnSIq95DqPbW/Website-Design–Copy-?t=AWziUKcjDhGlN9lr-6Continue reading
function dv_productdetails_block() { // Helperfunctie: toon regel alleen als ACF-veld gevuld is function dv_row($icon, $label, $field) { $value = get_field($field); if (!$value) return ”; // Verbergen als leeg return ‘ ‘.$label.’: ‘.$value.’ ‘; } // Begin blok $html = ‘…Continue reading
// 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
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
// 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
add_filter( ‘sgo_ignored_query_params’, ‘add_sgo_ignored_query_params’); function add_sgo_ignored_query_params( $ignored_query_params ) { // List query parameters to ignore in addition to SiteGround Speed Optimizer default ignore-list. // WooCommerce Order-Received Redirection Order Attribution $ignored_query_params[] = ‘utm_nooverride’; // Third-Party or Plugin-Specific Parameters // MailChimp $ignored_query_params[] =…Continue reading
add_filter( ‘wp_kses_allowed_html’, function( $tags, $context ) { if ( ‘post’ !== $context ) { return $tags; } // Make sure dl/dt/dd are present (usually already are). foreach ( array( ‘dl’, ‘dt’, ‘dd’ ) as $tag ) { if ( !…Continue reading
/** * Mythos — centralized Nav / Footer / Modal shortcodes * WPCode -> Add Snippet -> PHP Snippet -> Auto Insert, Run Everywhere -> Activate. * * Two logo images: an ICON (symbol) and a WORDMARK (the “Mythos Technology…Continue reading