Fire specific plugins at specific times

I notice that there is an event that triggers the display of plugins based on the current view being displayed.
fire_plugin_hook(hookname, array( this current view object, this current item object); Tthis is within the show.php view within the items route.

Anyway- is there a way to specify where in a theme you want specific plugins to show up on the UI?

What you can do is remove the fire_plugin_hook call and replace it with calls to get_specific_plugin_hook for the plugins you want to display the content of in the places you want them.

The following fixed it.
Thanks.

echo get_specific_plugin_hook_output(‘SocialBookmarking’, ‘public_items_show’, array(‘view’ => $this, ‘item’ => $item));