Last active
February 14, 2020 08:42
-
-
Save kreamweb/4de8ce1f78428a495506ea1068cc6e27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (defined('YITH_POS_VERSION')) { | |
add_action( 'wp_enqueue_scripts', 'yith_pos_add_new_stylesheet', 12 ); | |
function yith_pos_add_new_stylesheet(){ | |
global $yith_pos_styles; | |
wp_enqueue_style('yith-pos-override-frontend', get_stylesheet_directory_uri().'/pos.css', array('yith-pos-frontend'), YITH_POS_VERSION); | |
yith_pos_enqueue_style('yith-pos-override-frontend'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment