rubblemasta
Forum Replies Created
-
Forum: Plugins
In reply to: [Flamingo] Cannot load flamingo_inbound.For me it was caused by a conflict with the
postparameter in the URL. I changed the parameter topost_idin the following places:In
flamingo/admin/admin.phpline 474:
$post_id = ! empty( $_REQUEST['post_id'] ) ? $_REQUEST['post_id'] : '';
and line 513:
$post = new Flamingo_Inbound_Message( $_REQUEST['post_id'] );In
flamingo/admin/includes/class-inbound-messages-list-table.phpline 203:
$url = admin_url( 'admin.php?page=flamingo_inbound&post_id=' . absint( $item->id ) );Forum: Plugins
In reply to: [Restrict Widgets] Great potentialCheers for the plugin, hanging out for the fix to the “show” mode. Any progress?
Forum: Plugins
In reply to: [Custom Post Type Creator] Bug ReportAh, I see this is discussed here: http://ww.wp.xz.cn/support/topic/undefined-variables-and-indexes?replies=2
Forum: Plugins
In reply to: [Custom Post Type Creator] Bug ReportI can verify this. Looks like the plugin uses a lazy method to check whether params exist. A better method would be to use
isset(),empty()oreven array_key_exists(). See http://kunststube.net/isset/ for a thorough explanation.You can fix instances using examples here: http://stackoverflow.com/questions/4007752/php-check-if-variable-exist-but-also-if-has-a-value-equal-to-something
Forum: Plugins
In reply to: Simple Facebook Connect with Theme My LoginSimilar issues to OP here, I’m using TML 6.0.4 and SFC 0.21 – clicking “Connect with Facebook” on login page reloads the login page.
If I’m already logged into Facebook, reloads straight away.
If I’m not logged into Facebook it pops up the Facebook login modal but submitting that just reloads the login page as well.It’s the only essential feature I have left with this arrangement. My requirements are similar to Andy Beard’s – I don’t want to use AutoConnect.
Any help appreciated!