STEP1: Modify Plugin
-------------------------------------------------
Product: vBulletin Blog
Plugin: Add links to blog
Find:
Code:
$this->registry->userinfo['userid']
Replace:
Code:
$this->registry->userinfo['userid'] === $thread['postuserid']
STEP2: Modify PHP Code (If needed)
-------------------------------------------------
blog_post.php, #785, "if ($_REQUEST['do'] == 'newblog')"
if needed, add your permission logic to permanently block the use of 'newblog' from forums.
(You indirectly mentioned template code (since you said "hide"), but I thought it prudent to remind you of actual code permissions. Although, I doubt you need it.

)
Hopefully that gets you started.
-