Change Header, Button & Logo Background On Scroll With Elementor

maxresdefault

Javascript – Elementor Code: // Elementor Code // header color change on scroll Javascript – WP Code Snippets: // WP Code Snippets add_action( ‘wp_head’, function () { ?> CSS: /* Header Class: mainheader */ /* Logo Class: nav-logo */ /* Menu Text class: mainnav */ /* Button CTA Class: nav-cta */ /* Header Section */ […]

How To Exclude US States From Shipping On WooCommerce

How To Exclude US States From Shipping On WooCommerce

PHP Code: /** * Exclude these states */ add_filter( ‘woocommerce_states’, ‘custom_woocommerce_states’ ); function custom_woocommerce_states( $states ) { unset($states[‘US’][‘AK’]); return $states; }