[woocommerce_checkout]
global $hawthorneVersion; //====================================================================== // API LICENSING //====================================================================== if ( ! class_exists( 'HAWTHORNE_1_1' ) ) { require_once( get_stylesheet_directory() . '/wc-am-client.php' ); } if ( class_exists( 'HAWTHORNE_1_1' ) ) { /** * * @param string $file Must be __FILE__ from the root plugin file, or theme functions, file locations. * @param int $product_id Must match the Product ID number (integer) in the product. * @param string $software_version This product's current software version. * @param string $plugin_or_theme 'plugin' or 'theme' * @param string $api_url The URL to the site that is running the API Manager. Example: https://www.toddlahman.com/ * @param string $software_title The name, or title, of the product. The title is not sent to the API Manager APIs, but is used for menu titles. * */ $hawthorneVersion = new HAWTHORNE_1_1( __FILE__, 486807, '1.2.3', 'theme', 'https://besuperfly.com/', 'Hawthorne' ); } add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );} add_action( 'wp_enqueue_scripts', 'add_font_awesome' ); function add_font_awesome() { wp_enqueue_style( 'custom-fa', 'https://use.fontawesome.com/releases/v5.2.0/css/all.css' );}