Plugin Directory

Changeset 1809179

Timestamp:
01/25/2018 09:53:09 AM (7 years ago)
Author:
blvtomoya
Message:

Modify directory name

Location:
nextend-blv-sociallogin/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • nextend-blv-sociallogin/trunk/blv-sociallogin-nextend.php

    r1809101 r1809179  
    33Plugin Name: BLV SocialLogin Nextend
    44Description: Customize Nextend's "Nextend Google Connect", "Nextend Facebook Connect" and "Nextend Google Connect" plug-ins. This plugin controls the display of the login button.
    5 Version: 1.0.1
     5Version: 1.0.
    66Plugin URI: https://crebow.info/nextend-blv-sociallogin/
    77Author: Tomoya Matsumoto
     
    1515load_plugin_textdomain( "nextend-blv-sociallogin", false, $blvnsllang );
    1616
    17 define( 'BLVNSL_VERSION', '1.0.1' );
     17define( 'BLVNSL_VERSION', '1.0.' );
    1818define( 'BLVNSL_REQUIRED_WP_VERSION', '4.9.2' );
    1919define( 'BLVNSL_PLUGIN', __FILE__ );
  • nextend-blv-sociallogin/trunk/classes/output.php

    r1809101 r1809179  
    99    //CSS
    1010    if( 'default' === get_option('blvnsl_css_inclde') ){
    11       wp_enqueue_style( 'blv-sociallogin-css', plugins_url() .'/blv-sociallogin-nextend/css/login.css', array(), '1.0');
     11      wp_enqueue_style( 'blv-sociallogin-css', plugins_url() .'//css/login.css', array(), '1.0');
    1212    }elseif( 'designation' ===  get_option('blvnsl_css_inclde') ){
    1313      $blvnslcss_files = get_option('blvnsl_css_newurl');
     
    1717    //It is JavaScript used to respond when changing the specification of each social button.
    1818    if( 'default' === get_option('blvnsl_js_inclde') ){
    19       wp_enqueue_script('blv-sociallogin-js',  plugins_url() .'/blv-sociallogin-nextend/js/social-login-rule.js', array(), true);
     19      wp_enqueue_script('blv-sociallogin-js',  plugins_url() .'//js/social-login-rule.js', array(), true);
    2020    }elseif( 'designation' ===  get_option('blvnsl_js_inclde') ){
    2121      $blvnsljs_files = get_option('blvnsl_js_newurl');
     
    6161    //CSS
    6262    if( 'default' === get_option('blvnsl_css_inclde') ){
    63       wp_enqueue_style( 'blv-sociallogin-css', plugins_url() .'/blv-sociallogin-nextend/css/login.css', array(), '1.0');
     63      wp_enqueue_style( 'blv-sociallogin-css', plugins_url() .'//css/login.css', array(), '1.0');
    6464    }elseif( 'designation' ===  get_option('blvnsl_css_inclde') ){
    6565      $blvnslcss_files = get_option('blvnsl_css_newurl');
     
    6969    //It is JavaScript used to respond when changing the specification of each social button.
    7070    if( 'default' === get_option('blvnsl_js_inclde') ){
    71       wp_enqueue_script('blv-sociallogin-js',  plugins_url() .'/blv-sociallogin-nextend/js/social-login-rule.js', array(), true);
     71      wp_enqueue_script('blv-sociallogin-js',  plugins_url() .'//js/social-login-rule.js', array(), true);
    7272    }elseif( 'designation' ===  get_option('blvnsl_js_inclde') ){
    7373      $blvnsljs_files = get_option('blvnsl_js_newurl');
Note: See TracChangeset for help on using the changeset viewer.