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 | |
function load_scripts(){ | |
global $wp_scripts; | |
wp_register_script( 'theme-scripts', get_bloginfo('template_url').'/js/scripts.js', array('jquery'), '1.0', true ); | |
//if we're on the woocommerce checkout page | |
if( is_checkout() ){ | |
$wp_scripts->add_data('theme-scripts','data','<!--START SCRIPT STRING--> | |
// script to load before name-of-enqueued-script loads |
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
if ( ! function_exists( 'ot_settings_id' ) ) { | |
function ot_get_option() { | |
return false; | |
} | |
} | |
if ( function_exists( 'ot_settings_id' ) ) { | |
// add filter for options panel loader |