Change order display of plugins at item show

Hi, I want to display some plugins at the end of the item page, such as social bookmarking plugin, but it displays just after the images.

Is it possible to insert it directly at the show page just in the place I want to?

Thanks

It’s a little wonky, but in the theme’s items/show.php page you can use get_specific_plugin_hook_output() to give just the one plugin’s output by echoing it wherever you want.

The wonky part is that at the bottom of the page there will still be the usual fire_plugin_hook(), which will end up duplicating that output. Thus, you’d need to repeatedly call the specific function for each plugin.

Thank you for your helpful answer!