mightypixel
Forum Replies Created
-
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Buzzfeed type quizzes?In case anyone else is looking to accomplish the same thing, I figured this out as per this recommendation:
I have come up with the following solution until this is addressed.
Please feel free to correct/improve:
// if not login/register page, deregister oneall social login library.js function oneall_deregister_javascript() { if ( !is_page( array( 'login', 'register' ) ) ) { wp_deregister_script( 'oa_social_library' ); } } add_action( 'wp_print_scripts', 'oneall_deregister_javascript', 100 );
@nomadize, excellent point. +1
I have actually contacted OneAll but have yet to hear back from them on this.
Forum: Plugins
In reply to: [APC Object Cache Backend] APC caching wp-admin problem@te-deum, this is precisely what I had to do at the end.
But that effectively means we are no longer using this plugin. ??
A fix would be great, especially for high traffic websites.
Forum: Plugins
In reply to: [WP Super Cache] WP Super Cache cannot tell logged-in users properly (Nginx)This turned out to be due to Nginx caching on our loadbalancing server. Disabling that solved our problem.
Forum: Plugins
In reply to: [APC Object Cache Backend] APC caching wp-admin problemSame problem here. I have tried every single tweak and hack mentioned here to no avail. Much sadness.
Forum: Fixing WordPress
In reply to: Email address in forum profileNo chance you could change the display name?
Because I get the option to change it (and I do) but it still displays the email on my profile.
Still, thank you for trying to help. ??
Forum: Fixing WordPress
In reply to: Email address in forum profileIf you click on the profile for “blurb”, you will see my email address on the page and in the URL.
If you could help me delete this account (or change the URL/profile display name) I would be much obliged.
Forum: Plugins
In reply to: [Simple Page Ordering] Open Order Page by Default for Posts and CPTsI managed to get the native support for custom post types (by making them hierarchical), but no luck for the default post type.
Your ideas are much appreciated. Thanks.