guikubivan / Public-Media-Wordpress-Plugins

A repository for Wordpress plugins meant for public media websites.
6 stars 0 forks source link

WP3 Side Menu Issue #23

Open benabus opened 13 years ago

benabus commented 13 years ago

on the dev install (http://rtvs92.rtv.indiana.edu/wp-admin) that uses Wordpress 3, on the left hand side menu, in the IPM Plugins sub-menu, a lot of the links don't work.

I fixed the slideshow manager by using

    add_submenu_page($myutils->main_page_path(), 'Slideshow Manager', 'Slideshow Manager', 7, ABSPATH.PLUGINDIR.'/ipm-wordpress-slideshow/wordpress_slideshow.php',  array(&$wp_slideshow, 'manage_slideshows'));

making sure that the 'slug' parameter (ABSPATH....) is a link to the actual plugin script.... Before it was just using "Slideshow Manager" as the slug which caused problems. I'm sure the other links have a similar problem. Will fix the rest next time.