コード例 #1
0
 /**
  * Styling for the options page
  *
  * @since 1.3
  */
 public function settings_styles()
 {
     jrto_enqueue_style('admin', 'jigoshop-select2', JIGOSHOP_URL . '/assets/css/select2.css');
     do_action('jigoshop_settings_styles');
     // user defined stylesheets should be registered and queued
 }
コード例 #2
0
 public function adminStyles()
 {
     jrto_enqueue_style('admin', 'favicon', FFLCOMMERCE_CART_FAVICON_COUNT_URL . '/vendor/css/colpick.css');
     jrto_enqueue_style('admin', 'colpick', FFLCOMMERCE_CART_FAVICON_COUNT_URL . '/assets/css/init-colpick.css');
 }
コード例 #3
0
ファイル: jigoshop.php プロジェクト: ashik968/digiplot
function jigoshop_check_required_css()
{
    global $wp_styles;
    if (empty($wp_styles->registered['jigoshop_styles'])) {
        jrto_enqueue_style('frontend', 'jigoshop-jquery-ui', JIGOSHOP_URL . '/assets/css/jquery-ui.css');
        jrto_enqueue_style('frontend', 'jigoshop-select2', JIGOSHOP_URL . '/assets/css/select2.css');
        jrto_enqueue_style('frontend', 'prettyPhoto', JIGOSHOP_URL . '/assets/css/prettyPhoto.css');
    }
}
コード例 #4
0
 /**
  * Styling for the options page
  *
  * @since 1.3
  */
 public function settings_styles()
 {
     jrto_enqueue_style('admin', 'fflcommerce-select2', FFLCOMMERCE_URL . '/assets/css/select2.css');
     do_action('fflcommerce_settings_styles');
     // user defined stylesheets should be registered and queued
 }
コード例 #5
0
ファイル: fflcommerce.php プロジェクト: barnent1/fflcommerce
function fflcommerce_check_required_css()
{
    global $wp_styles;
    if (empty($wp_styles->registered['fflcommerce_styles'])) {
        jrto_enqueue_style('frontend', 'fflcommerce-jquery-ui', FFLCOMMERCE_URL . '/assets/css/jquery-ui.css');
        jrto_enqueue_style('frontend', 'fflcommerce-select2', FFLCOMMERCE_URL . '/assets/css/select2.css');
        jrto_enqueue_style('frontend', 'prettyPhoto', FFLCOMMERCE_URL . '/assets/css/prettyPhoto.css');
    }
}