Recent Topics

1 Jul 16, 2009 18:25    

My b2evolution Version: 2.4.2
Hello all,

First I'll start out by saying I'm not a blogging pro or an expert at coding, but what I want to accomplish is to remove / rename the headers for "Blogs" and "User Tools" on my right sidebar.

I've gone into the blog settings and changed in the widgets the following:

Public Blog List:
Name changed to "The Colvins" (I don't want anything here if that's possible)

User Tools:
Block Title changed to "Menu" (I don't want anything here if that's possible)
I also changed Name to "Menu"

I've made those changes but they still show up as "Blogs" and "User Tools" on my sidebar.

Any advice? Thanks in advance! :)

www.ColvinBlog.com <--- Blog site

Edit: Added version

2 Jul 16, 2009 19:45

Hi, welcome to the forums

I think you might have actually found a bug :D

I haven't been able to sort the public blog list out yet but as far as the User tools goes open up:

/inc/widgets/widgets/_user_tools.widget.php

Find the line that says:


echo T_('User tools');

And change it to :


echo $this->disp_params['title'];

I will try and follow this up with an answer to the public blog list as soon as I have looked into it a little deeper. Either that or someone far more intelligent than me will answer before then.

L

3 Jul 16, 2009 20:35

From what I can tell the solution to the Public Blog List is a little less clean as the Public Blog List doesn't have a title field like the User Tools widget.

I think what you are going to have to do is open up:

/inc/widgets/model/_widget.class.php

Find the line that says:


$this->disp_title( T_('Blogs') );

Should be around line 634 and change the Blogs bit to whatever you want it to be called:


$this->disp_title( T_('The Colvins') );

I think that should work OK.

L


Form is loading...