OK. Interesting thing. After much trial, tribulation, installs, removes, etc…, I had to completely rebuild my development sight and start from scratch since I blew the data. No theme would display and page content.
So, I get what I want from RPB. When no activating hover, Links work anywhere on the picture. Activating hover, links work only when over the Title. Why ?? Don’t know, didn’t investigate. I do know, however, that I also added the plugins ‘Custom Post Type UI’ and ‘Custom Post Type Permalinks’ and created ‘Staff’ as a custom post type and used that post type in the portfolio on RPB.
I did pursue how to get better customizations without messing up other pages if the theme gets updated. for example on the ‘Staff’ issue, copy the ‘page.php’ into the child theme and rename it to, say, ‘page-staff.php’ and put in whatever customizations you want. Create a ‘page.php’ in the child theme and enter this code into it:
<?php
if($post->post_title=='Staff') {
include_once(get_stylesheet_directory().'/page-staff.php');
}
else {
include_once(get_template_directory().'/page.php');
}
?>
Using this method, you can modify any template in the main theme though the child theme but only for those posts (or whatever other query able item) you want. WordPress looks first in the child theme for certain template names. By providing it one you get to decided which *actual* template gets used.