cgpetersen
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Links To] Remove Meta Box for Author user rolesI don’t know if you’re still looking for an answer to this, but this is what worked for me:
remove_meta_box( 'page-links-to', 'post', 'advanced' );The $context for Page Links To is ‘advanced’. If you have a custom post type replace “post” with the name of the post type.
dedric22:
Would you please post the code you changed in pastebin? I would really like to change this behavior as well. I’m new to PHP and haven’t been able to figure what lines to comment out in the Admin.php file.
THANKS!
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Slides not showing in adminThanks for pointing me in the direction of the abstraction plugin. I found the issue in the plugin – there’s an error in the translations.php file. In case someone else runs into this problem, here are the fixes that I found:
Modify row 388 in translations.php:
from$param = "'$param'";
to$param = "$param";Change the translate_limit function translations.php from:
// Check for true offset
if ( (count($limit_matches) == 5 ) && $limit_matches[1] != '0' ) { $true_offset = true; } elseif ( (count($limit_matches) == 5 ) && $limit_matches[1] == '0' ) { $limit_matches[1] = $limit_matches[4]; }to
// Check for true offset
if ( (count($limit_matches) == 5 ) && $limit_matches[1] != '0' ) { $true_offset = true; } elseif ( (count($limit_matches) >= 5 ) && $limit_matches[1] == '0' ) { $limit_matches[1] = $limit_matches[4]; }Thanks again!
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Slides not showing in adminI just emailed login information to you.
Thanks!