Hi there
Perhaps you can point me as where I have incorrectly configured this module. The bloginfo fields are displayed in the user form and are entered into the database. However when the blog is displayed it displays the user name "blog" with the recent posts beneath. Then below this comes the BlogInfo Title and Description then a list of linked post titles. I am sure this was not the intention of this module.
Any help would be gratefully received.
Thanks
Rory

Comments

mfer’s picture

@Rory: This is the by design behavior. There is a page title that's the $title tag in your page.tpl.php file. Then there is a block created by the bloginfo module that provides a title and description. This block can be put in any region on the page but does not override the page title.

If you want to remove the $title tab on blogs check out my comments on #1 and #2 at http://drupal.org/node/141589.

Does this help?

roryOB’s picture

Thanks, I clearly want a different functionality. Rather then generate a new block I wanted a function that would pass a name and description field (taken from 2 fields on user's form page) into the user's blog page title rather than use the users name which is the default.
Any suggestions to the avenue I should take to explore a solution to this?

mfer’s picture

This should be pretty easy to do via theming. Check out the drupal_set_title function (http://api.drupal.org/api/5/function/drupal_set_title). Linked at the top is some places where this function is used.

mfer’s picture

Status: Active » Closed (fixed)
1kenthomas’s picture

What the OP intends can likely be more easily achieved via printing the BI block to content top, though', yep, replacing the title would be nice.