Untitled Snippet

CV. ABIMACHINARY — Bengkel Maintenance & Mesin UMKM, Perkebunan & Pertanian Beranda Tentang Kami Layanan Produk Hubungi Kami Konsultasi CV. ABIMACHINARY — MALANG, JAWA TIMUR BENGKEL MAINTENANCE& READY MESIN UMKM, Perkebunan & Pertanian Kami melayani perbaikan dan perawatan mesin produksi,…Continue reading

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