Hi.
Found the same problem.
Edit the file:
wp-content/plugins/pet-manager/inc/cpt-pets.php
and add ‘show_ui’=>TRUE after ‘public’=>FALSE in each call to the function ‘register_taxonomy’. Example:
register_taxonomy( ‘pet-category’, ‘pet’, array( ‘hierarchical’ => false, ‘labels’ => $labels, ‘query_var’ => ‘pet-category’, ‘public’ =>FALSE, ‘show_ui’=>TRUE,’show_admin_column’=>TRUE,’show_in_nav_menus’=>TRUE, ‘rewrite’ => array( ‘slug’ => __(‘pet-category’,’wp_pet’), ‘hierarchical’ => false,’with_front’ => FALSE ) ) );
The “Add something” buttons will work again.
In videohome.php there is a dot missing in line 306 “$div=”. Change it to:
/** Iframe code for youtube videos */
$videoId1 = getYoutubeVideoID ( $videoUrl );
$div.='<div id=”player”></div><script>
and the page will be ok again.
If necessary adjust the video width in the plugin settings.