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
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
jQuery( function( $ ) { ‘use strict’; var targetSelector = ‘#pm-cart-totals’, requestAction = ‘wcsatt_update_cart_option’, activeRequests = 0; function isSubscriptionCartUpdate( settings ) { var requestUrl = settings && settings.url ? String( settings.url ) : ”, requestData = settings && settings.data ?…Continue reading
add_filter( ‘wt_iew_use_wc_order_stats_for_export_order_count’, ‘__return_false’ );Continue reading
body.tag-has-active-subscription p.order-again { display: none; }Continue reading
(function () { const fieldSelectors = [ ‘#billing_phone_field’, ‘#billing_company_field’, ‘#billing_address_1_field’, ‘#billing_address_2_field’, ‘#billing_city_field’, ‘#billing_postcode_field’, ‘#billing_state_field’, ‘#billing_country_field’ ]; const klaviyoSelectors = [ ‘#kl_newsletter_checkbox_field’, ‘#kl_sms_consent_checkbox_field’ ]; function setVisibility(selectors, show) { selectors.forEach(selector => { const el = document.querySelector(selector); if (el) { el.style.display = show…Continue reading
document.addEventListener(‘DOMContentLoaded’, function () { const observer = new MutationObserver(function () { const codeInput = document.querySelector(‘input[name=”cev_billing_email”]’); if (codeInput && !codeInput.hasAttribute(‘inputmode’)) { codeInput.setAttribute(‘inputmode’, ‘numeric’); } }); observer.observe(document.body, { childList: true, subtree: true }); });Continue reading