qayqay12
Forum Replies Created
-
Forum: Plugins
In reply to: [Better WordPress Minify] error 400 bad requestIt seems this problem occurs when you put wordpress in a subfolder.
In bwp-minify\min\config.php, there is a configuration variable named $min_documentRoot set to ” (empty string) which means “take the value from $_SERVER[‘DOCUMENT_ROOT’]”.
But $_SERVER[‘DOCUMENT_ROOT’] is not the wordpress root folder if it is installed in a subfolder.
to fix it, replace
$min_documentRoot = ”;
by
$min_documentRoot = realpath(dirname(__FILE__).’/../../../../’);That should work in any cases.
Here is a fix:
common users:
In the menu Role->options, disable this option:
Nav Menu Management -> List only user-editable content as available itemstechies:
the problem comes from the ‘parse_query’ filter defined in the file role-scoper/admin/filters-nav-menu-query_rs.phpwordpress 3.7.1 + Version 1.3.63 break the wp menu editor.
It displays every entries of every menus in every menus you select.When I deactivate the plugin, the bug disappear. So the workaround is to deactivate the plugin, edit the menus and re-activate the plugin.
As long as you do not save your menu while the role scoper plugin is activated, it does not alter your menus.
Forum: Plugins
In reply to: [Post Type Switcher] [Plugin: Post Type Switcher] Not saving revisionsSame problem here. Thanks for the fix !
Forum: Plugins
In reply to: [Adminimize] [Plugin: Adminimize] bug in custom metabox #ids for custom typesHere’s the fix:
file: write_cp_options.php Line 219:
style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_' . $post_type . '_options'); ?></textarea>Should be
style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_options_' . $post_type ); ?></textarea>file: write_cp_options.php Line 227 & 228:
style="width: 95%;" > <?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_' . $post_type . '_values'); ?></textarea>Should be
style="width: 95%;" ><?php echo _mw_adminimize_get_option_value('_mw_adminimize_own_values_' . $post_type ); ?></textarea>Cheers