Recent Topics

1 Jun 23, 2008 05:40    

My b2evolution Version: Not Entered

First off, I have gotten some amazing help from this forum. Thank you!

You guys are awesome.

I have what I hope to be a small change to my site.

On my sites, I want to change the "Contact" text link to "Contact Webmaster" on the list of links just below the heading. I think it is a widget and I'd like it change on all the sites that use that widget.

Here's a link to the site so you can see what I mean:

http://longislandrealestateresources.com/

What is happening is that we have separate contact links in each property and people are requesting help from the "Contact" link not realizing that I am not the contact for that particular property and post.

Thanks in advance.

Sincerely,

James

2 Jun 23, 2008 06:11

quick fix : (not advised, core hack; if you will do this, remember that you did this in the next upgrade ;) or use the other ways )

crack open your .../inc/widgets/widgets/_menu_link.widget.php

if you are using 2.4.2 you will see

			case 'ownercontact':
				$url = $Blog->get_contact_url( true );
				$text = T_('Contact');
				break;

around line 156..

change 'Contact' to what you want..

better way: it's a translatable string afai remember, make the change as a translation..

another way: write a plugin to do it , which i dont know ;)

3 Jun 23, 2008 06:18

You guys are awesome!

Thanks!

Sincerely,

James

4 Jun 27, 2008 06:10

I would consider changing this and making it part of the skin. With the skin, you can create a custom menu and put it on the top. The skin you are using has a "menu" or " Page Top section. You can hardcode the menu item there including the Contact The WebMaster bit.


Form is loading...