Fix for blog title link not linking to blog
-
I’m on BP 1.6.4. When I add a blog using Bowe Codes it’s pulled in correctly with the correct avatar and blog id but when a user clicks on the blog link, it just brings them to the page where the shortcode was added. However, the group avatar correctly links to the blog.
I fixed this by changing line 577 from this:
$blog_html .= ‘<h4>‘siteurl’,$blog_id).'”>’.get_blog_option($blog_id, ‘blogname’).’</h4>’;
to this (notice that ‘siteurl’ and $blog_id are switched):
$blog_html .= ‘<h4>$blog_id,’siteurl’).'”>’.get_blog_option($blog_id, ‘blogname’).’</h4>’;
Thanks,
NG
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Fix for blog title link not linking to blog’ is closed to new replies.