Plugin Directory

Changeset 1454086


Ignore:
Timestamp:
07/13/2016 01:25:38 PM (10 years ago)
Author:
aparg
Message:

Minor bug fix

Location:
aparg-slider
Files:
102 added
2 edited

Legend:

Unmodified
Added
Removed
  • aparg-slider/trunk/aparg-slider.php

    r1452474 r1454086  
    44  Plugin Name: Aparg Slider
    55  Description: Aparg Slider is image and video slider with descriptions for each slide and smooth animations.
    6   Version:     2.3
     6  Version:     2.4
    77  Author:      Aparg
    88  Author URI:  http://aparg.com/
     
    190190 * Including scripts and styles to front end
    191191 */
    192 add_action('get_header', 'apsl_load_custom_files');
     192add_action('wp_enqueue_scripts', 'apsl_load_custom_files');
    193193
    194194function apsl_load_custom_files() {
    195195    if (!is_admin()) {
    196         wp_enqueue_scripts('jquery');
     196        wp_enqueue_script('jquery');
    197197        // **** //
    198198        wp_register_style('flexslider_style', plugins_url('css/flexslider.css', __FILE__));
     
    200200        wp_register_style('flexslider_custom_style', plugins_url('css/flexsliderstyles.css', __FILE__));
    201201        wp_enqueue_style('flexslider_custom_style');
    202         wp_register_script('flexslider_scripts', plugins_url('js/jquery.flexslider.js', __FILE__), array('jquery', 'jquery-ui-core',));
     202        wp_register_script('flexslider_scripts', plugins_url('js/jquery.flexslider.js', __FILE__), array('jquery'));
    203203        wp_enqueue_script('flexslider_scripts');
    204204        wp_register_script('bigSlider_scripts', plugins_url('js/aparg-big-slider.js', __FILE__));
     
    206206        wp_register_script('youtube_scripts', plugins_url('js/jsvideourlparser.js', __FILE__));
    207207        wp_enqueue_script('youtube_scripts');
     208       
    208209    }
    209210}
  • aparg-slider/trunk/readme.txt

    r1452484 r1454086  
    33Requires at least: 3.5
    44Tested up to: 4.5.3
    5 Stable tag: 2.3
     5Stable tag: 2.4
    66License: GPLv2 or later
    77License URI: https://wordpress.org/about/gpl/
     
    5656== Changelog ==
    5757
     58= 2.4 =
     59* Minor bug fix
     60
    5861= 2.3 =
    5962* General bug fixing
Note: See TracChangeset for help on using the changeset viewer.