Closed (fixed)
Project:
Blog Information
Version:
5.x-2.3
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
29 May 2007 at 12:02 UTC
Updated:
7 Jul 2007 at 03:17 UTC
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
Comment #1
mfer commented@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?
Comment #2
roryOB commentedThanks, 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?
Comment #3
mfer commentedThis 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.
Comment #4
mfer commentedComment #5
1kenthomas commentedWhat 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.