Get rid of Home

add_filter(‘pre_get_document_title’, function($title) { if (is_front_page()) return ‘Brooklyn Insurance Agency | Max J. Pollack & Sons’; return $title; });Continue reading

Gravity Forms Hook — BOL Upload Triggers Capture

add_action( ‘gform_after_submission_5’, ‘wcv_dynamic_bol_capture’, 10, 2 ); function wcv_dynamic_bol_capture( $entry, $form ) { $order_id = null; $bol_file_url = null; foreach ( $form[‘fields’] as $field ) { $label = strtolower( trim( $field->adminLabel ?: $field->label ) ); if ( in_array( $label, array( ‘order…Continue reading

Smooth Scroll

document.querySelectorAll(‘a[href^=”/#”]’).forEach(link => { link.addEventListener(‘click’, function(e) { e.preventDefault(); const target = document.querySelector(this.getAttribute(‘href’).replace(‘/’, ”)); if (target) { window.scrollTo({ top: target.offsetTop – 80, behavior: ‘smooth’ }); } }); }); “Continue reading

Сайт Кара Булак

QaraBulaq – Демалыс орны | Аламедин ⚡ QaraBulaq Тау бөктеріндегі жанұялық демалыс орны “>🏡 ДЕМАЛЫС ОРЫНДАРЫContinue reading

Untitled Snippet

{ “data”: [ { “action_source”: “system_generated”, “custom_data”: { “event_source”: “crm”, “lead_event_source”: “Your CRM” }, “event_name”: “Lead”, “event_time”: 1673035686, “user_data”: { “em”: [ “7b17fb0bd173f625b58636fb796407c22b3d16fc78302d79f0fd30c2fc2fc068” ], “lead_id”: 1234567890123456, “ph”: [ “6069d14bf122fdfd931dc7beb58e5dfbba395b1faf05bdcd42d12358d63d8599” ] } } ] }Continue reading

WWPP – Hide Tax label on Cart/Checkout for wholesale customers

add_filter( ‘woocommerce_countries_tax_or_vat’, function( $label ) { if ( ! ( is_cart() || is_checkout() ) ) { return $label; } global $wc_wholesale_prices_premium; $user_wholesale_role = $wc_wholesale_prices_premium->wwpp_wholesale_roles->getUserWholesaleRole(); if ( empty( $user_wholesale_role ) ) { return $label; } return ”; // Leave blank, or…Continue reading