Hello,
I've posted this problem on the author's site but no response yet. This plugin is great, but the 'pages' link returns an error page instead of going to the pages part of wp dashboard. I've tried tweaking it and nothing worked. I finally took out the following line so the pages link is no longer visible.
/wp-admin/pages.php" title="View all your pages">Pages
Hopefully someone can help? Is anyone else having this issue with the plugin?
Thanks,
Tessa (aka dirtdigger)
http://wordpress.org/extend/plugins/wp-admin-quicklinks/
bagheadinc
Member
Posted 1 year ago #
Edit wp-admin-quicklinks.php, search for this line (should be line 95)
<li><a href="<?php bloginfo('wpurl'); ?>/wp-admin/edit-pages.php" title="View all your pages">Pages</a></li>
And replace it with
<li><a href="<?php bloginfo('wpurl'); ?>/wp-admin/edit.php?post_type=page" title="View all your pages">Pages</a></li>