sgatz
Forum Replies Created
-
Thanks @ianmjones ! I stumbled across this fix on the AWS PHP API github page: https://github.com/aws/aws-sdk-php/issues/1931
Forum: Plugins
In reply to: [Facebook] Mentions missingNiall, do you mean we should just @mention someone in the timeline.
Forum: Fixing WordPress
In reply to: Users can login using any password – Code heads up!You just need to remove the return $user.
here’s my improved function:
add_filter( 'authenticate', 'my_custom_function', 10, 3 ); function my_custom_function( $user, $username, $password ){ $user = get_user_by('login', $username ); if ($username!=''){ $value = get_user_meta($user->ID, 'confirmed', true); if($value!=null){ $errors = new WP_Error(); $errors->add( 'need verification', __( 'You need to verify your email address before you can log in. Check your email.')); remove_action('authenticate', 'wp_authenticate_username_password', 20); //key found - don't proceed! return $errors; } } }
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] Publish to fan page setting DisabledRishi & Matt Kelley,
The development version off GitHub fixed the issue for us and posts all seem to be going through ok. Will report back with any change, but it seems to do the duty.
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] Admin Panel slow since FB plugin installI had to deactivate it too. It’s not all of admin, but add new post that ultimately times out for me.
I have the social publishing and recommendations bar options enabled. We simply can’t access the “add new post” page.
so, facebook disabled for now.
Forum: Plugins
In reply to: [PhotoDropper] [Plugin: PhotoDropper] Photodropper stalled at "Photo saving"I’m having the same problem too. the folder permissions are 777 on teh uploads directory and still gets stuck on saving photo.
also, upon each startup, it shows the intro screen asks me to say if my site is commercial and for my email address each time. Seems it isn’t remembering settings properly.
Forum: Plugins
In reply to: [MobilePress] [Plugin: MobilePress] Mobile site shows regardlessWe’re seeing this behaviour as well, but not on 100% of visits. For example, I see the main blog version, but other employees (in different locations) are seeing the mobile version.
We are also caching using WP Super Cache, but I don’t have any good info if that’s the cause.
Forum: Themes and Templates
In reply to: more control over wp_link_pages?I tried this and it is very close.
The one caveat (for people reading) is that just putting ” as a value in nextpagelink or previouspagelink only removes the text, it doesn’t remove the link. So you get a in your html. since I style links, it shows up in my theme. I’ll have to play with it a bit to remove that, but I think I can make it work.
Forum: Themes and Templates
In reply to: more control over wp_link_pages?ippo, thanks. I’ll give that a try. it seems quite smart (and why didn’t I think of that).
–scott
Forum: Fixing WordPress
In reply to: Posting new Post leads to blank php screensorry, this was meant to be a test post.