Leandro Padula
Forum Replies Created
-
Forum: Reviews
In reply to: [Social Articles] Don’t do it! You have so much to live for!First of all, most of people found this plugin useful. Im using social articles on six sites, since 1.0 version, and I was never hacked.
You can check the source code, and you will see that the plugins is well coded.
I don’t know why you are assuming that the plugin is a “free pass for hacking”… You can paste php code on the content field but the code wont be executed… It works like WordPress backend.I could see that most of your plugins reviews are negative. I think you should really understand first how plugins work and test them before review so slightly.
Forum: Plugins
In reply to: [WordPress Social Login] Buddypress and User AvatarGreat! Thanks.
Forum: Plugins
In reply to: [WordPress Social Login] Buddypress and User AvatarI mean… an “if” statement.
Forum: Plugins
In reply to: [WordPress Social Login] Buddypress and User AvatarAn “is” could be a good solutions…
in my function.php i have implemented this:
function add_buddypress_avatar( $user_id, $provider, $hybridauth_user_profile ) { $user = get_userdata( $user_id ); $uploads = wp_upload_dir(); define( 'AC_AVATAR_BASE_PATH', $uploads['basedir'] . '/avatars/' ); define( 'AC_PROFILE_PHOTO_BASE_PATH', $uploads['basedir'] . '/social/' ); $avatarUrl = get_user_meta( $user_id, 'wsl_user_image', true ); // $ch = curl_init( $avatarUrl . '&redirect=false' ); $ch = curl_init( $avatarUrl ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, 10 ); // Mean 10 seconds $content = curl_exec( $ch ); $data = json_decode( $content, true ); curl_close( $ch ); if ( !file_exists( AC_AVATAR_BASE_PATH . $user->ID ) ) { mkdir( AC_AVATAR_BASE_PATH . $user->ID, 0777, true ); copy( $data["data"]["url"], AC_AVATAR_BASE_PATH . $user->ID . '/avatar-' . $user->user_nicename . '-bpfull.jpg' ); copy( $data["data"]["url"], AC_AVATAR_BASE_PATH . $user->ID . '/avatar-' . $user->user_nicename . '-bpthumb.jpg' ); } } add_action( 'wsl_hook_process_login_before_redirect', 'add_buddypress_avatar', 10, 3 );
Forum: Plugins
In reply to: [BuddyPress Like] Known issues, and have you found any issues?Hi darren, if you are interest i have a modify version of your plugin with email notifications (with templating system).
Forum: Plugins
In reply to: [WP Activity Log] API?ok, thank you!
Forum: Plugins
In reply to: [AddThis Social Sign In] Problems with Theme My LoginHi, I understand how to insert the buttons, but how i remove them? They are auto inserted on my “Theme my Login” form, and it didnt work!
Forum: Plugins
In reply to: [WP JQuery Timelinr] [Plugin: WP JQuery Timelinr] More date FlexibilityYes, we are working to release a new version… you will see some improvements on dates ??
Forum: Plugins
In reply to: [WP JQuery Timelinr] [Plugin: WP JQuery Timelinr] HTML5/Mobile responsiveHi mhains, i dont think it will be a responsive solution for one simple reason… the original jQuery plugin doesn’t support it! WP jQuery Timelinr is only a wrapper for WordPress.
You can find more information here: https://www.csslab.cl/2011/08/18/jquery-timelinr/
Forum: Requests and Feedback
In reply to: pushup pluginsomeone?