<?php /** * NORTH CUT theme functions. */ if ( ! defined( 'ABSPATH' ) ) { exit; } add_action( 'after_setup_theme', function () { add_theme_support( 'title-tag' ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script' ) ); add_theme_support( 'woocommerce' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); register_nav_menus( array( 'primary' => __( 'Primary Menu', 'north-cut-bk' ), ) ); } ); /** * Brand WooCommerce ATC  override purple .button.alt with NORTH CUT accent. */ add_action( 'wp_enqueue_scripts', function () { if ( ! class_exists( 'WooCommerce' ) ) { return; } $css = '.north-cut-summary .single_add_to_cart_button,' . '.woocommerce .north-cut-summary button.button.alt{' . 'background:#c45a2c!important;color:#f4efe6!important;border:0!important;border-radius:0!important;' . 'font-family:inherit;text-transform:uppercase;letter-spacing:.14em;padding:.85rem 1.5rem}' . '.north-cut-summary .single_add_to_cart_button:hover{background:#171717!important;color:#f4efe6!important}' . '.north-cut-summary .quantity .qty{border:1px solid rgba(23,23,23,.25);border-radius:0;background:#f4efe6;padding:.65rem}'; wp_register_style( 'north-cut-woo', false, array( 'woocommerce-general' ), '1.0.1' ); wp_enqueue_style( 'north-cut-woo' ); wp_add_inline_style( 'north-cut-woo', $css ); }, 20 ); https://0fdd175ebbd1.sites.fregio.ai/author/vibewp_admin/