Changeset 1222933
- Timestamp:
- 08/17/2015 06:44:24 PM (11 years ago)
- Location:
- sexy-login/trunk
- Files:
-
- 4 edited
-
inc/class-sexy-login-widget.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
sexy-login-init.php (modified) (1 diff)
-
sl-config.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sexy-login/trunk/inc/class-sexy-login-widget.php
r697763 r1222933 2 2 class Sexy_Login_Widget extends WP_Widget { 3 3 4 private static $instance;4 private $sl_instance; 5 5 6 6 function Sexy_Login_Widget() { … … 12 12 function widget( $args, $instance ) { 13 13 14 if ( empty( $this-> instance ) )15 $this-> instance = true;14 if ( empty( $this->sl_instance ) ) 15 $this->sl_instance = true; 16 16 else 17 17 return; … … 54 54 <?php 55 55 56 if ( $sl_options['show_avatar'] ) 57 echo get_avatar( $current_user->ID, $sl_options['avatar_size'] ); 58 56 if ( $sl_options['show_avatar'] ) { 57 58 if( function_exists( 'bp_core_fetch_avatar' ) ) { 59 echo bp_core_fetch_avatar( array( 'item_id' => $current_user->ID, 'type' => 'full' ) ); 60 } 61 else { 62 echo get_avatar( $current_user->ID, $sl_options['avatar_size'] ); 63 } 64 65 } 66 59 67 if ( $sl_options['show_nickname'] ) 60 68 echo '<h1>' . $current_user->nickname . '</h1>'; -
sexy-login/trunk/readme.txt
r752231 r1222933 4 4 Tags: login, register, sexy, ajax, authentication, captcha, sidebar, widget, user, ssl, secury, admin bar, ReCaptcha, cross browser, lost password 5 5 Requires at least: 3.0 6 Tested up to: 3.67 Stable tag: 2. 56 Tested up to: 4.2.4 7 Stable tag: 2.6 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 32 32 * It's responsive! 33 33 * Languages: the same of your WordPress! (It’s multi-language). English or spanish in back-end. 34 35 [Try Demo](http://optimaldevs.com/demo/ "Try Sexy Login demo.")36 37 Note: A new pro version is coming stay tune in http://optimaldevs.com/38 34 39 35 == Installation == … … 66 62 67 63 == Changelog == 64 65 = 2.6 = 66 * Tested with WordPres 4.2.4. 67 * Fixed bug related with distorted avatar when using buddyPress. 68 * Fixed a few minor bugs. 68 69 69 70 = 2.5 = -
sexy-login/trunk/sexy-login-init.php
r752225 r1222933 4 4 Plugin URI: http://wordpress.org/extend/plugins/sexy-login/ 5 5 Description: The sexiest login widget for Wordpress! 6 Version: 2. 56 Version: 2.6 7 7 Author: OptimalDevs 8 8 Author URI: http://optimaldevs.com/ -
sexy-login/trunk/sl-config.php
r752225 r1222933 7 7 define( 'SL_LOGIN_ATTEMPTS_LAPSE', 10 ); 8 8 define( 'SL_LOSTPWD_TIME_LAPSE', 10 ); 9 define( 'SL_VERSION', '2. 5' );9 define( 'SL_VERSION', '2.6' ); 10 10 define( 'SL_PLUGIN_ROOT_URL', plugin_dir_url( __FILE__ ) ); 11 11
Note: See TracChangeset
for help on using the changeset viewer.