Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
SEO for fireboard still not answered (1 viewing) (1) Guest
Go to bottom Favoured: 5
TOPIC: SEO for fireboard still not answered
#17062
SEO for fireboard still not answered 1 Year ago  
PLease do not just block this post!

It is a serious request for something Fireboard really must address if it wants to be implemented on anything other than HObby sites.

"As someone running a semi-serious site where the forum is a key component it is incredibly important that I optimise Fireboard for SEO.

I use sh404sef for SEF URL's.

Fireboard populates the title tag, although I would like some control over that.
(currenty its hardcoded as "sitename-thread title - board title".

But the big missing thing is that Fireboard does not populate the meta description tag.

My users generate dozens of postings every day and I want each thread registered in Google.

At the moment google hides many of them assuming they are duplicate pages because the tag is empty (or i can fill it with standard text).

I really really could do with Fireboard populating the meta description with the first couple of hundred characters from the post.

I found the part of the fireboard code that populates the title tag and tried to add the code for meta description with no luck.

Surely anyone who has a serious forum and wants to succeed in SE rankings needs this also.

Any chance of getting this feature added??"

In response to replies on previous post......

1) Yes sh404SEF does support metatags but only on standard content items.

It would require someone to write a sh404sef plug-in for fireboard for this to work.
That would be one solution.

2) To moderator who locked topic and said search for SEF posts.

This is not really a SEF URL issue. It is a meta tag issue.

Fireboard already auto-populates the title tag. Which is great.

But thats half the job.

It means right now that for EVERY single fireboard user, when ANY of their fireboard pages are index and displayed in Google the 2 line description is garbage.

So there are no doubt 100s of thousands of fireboard entries now indexed in Google with garbage in the description.

Please please consider this as it will hugely benefit the web success of every fireboard user and therefore will help fireboard themselves.

Many thanks, Ian Rispin, founder - www.wikivorce.com
ianrispin (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/08/05 22:00 By ianrispin.
 
The administrator has disabled public write access.  
#17064
Re:SEO for fireboard still not answered 1 Year ago  
I suggest adding a tracker requesting better Meta Tag support for SEO.

joomlacode.org/gf/project/fireboard/tracker/
palebluedot (Moderator)
FB Documentation Team
Template Documentation Project
Moderator
Posts: 622
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Minneapolis, MN US Birthdate: 1973-01-12
Logged Logged
 
 
The administrator has disabled public write access.  
#18969
Re:SEO for fireboard still not answered 1 Year ago  
I just submitted a tracker for this. But a I agree that this is a must have function. A quick question though, in which file does FB specify the title tag?

It was mentioned that(currenty its hardcoded as "sitename-thread title - board title".) I'd like to change that order.
DCB (User)
Senior Boarder
Posts: 58
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#18970
Re:SEO for fireboard still not answered 1 Year ago  
The first step towards search engine optimization should be eliminating the double page loads, because it causes lower pageranks as the site speed is a very important SEO factor.
LocaLiceR (User)
FB Translation Team
"Do It Now!"
Moderator
Posts: 335
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Joomla.org.hu Location: Hungary Birthdate: 1958-10-14
Logged Logged
 
Do not give fish to the hungry man teach him how to fish instead
 
The administrator has disabled public write access.  
#18973
Re:SEO for fireboard still not answered 1 Year ago  
LocaLiceR wrote:
The first step towards search engine optimization should be eliminating the double page loads, because it causes lower pageranks as the site speed is a very important SEO factor.

While I agree somewhat, right now all the content is viewed pretty much as duplicate content since the description is the same for every item. For me that's a larger problem.
DCB (User)
Senior Boarder
Posts: 58
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#18974
Re:SEO for fireboard still not answered 1 Year ago  
That sounds gloomy Perhaps it would be better to install FB on a subdomain.
LocaLiceR (User)
FB Translation Team
"Do It Now!"
Moderator
Posts: 335
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Joomla.org.hu Location: Hungary Birthdate: 1958-10-14
Logged Logged
 
Do not give fish to the hungry man teach him how to fish instead
 
The administrator has disabled public write access.  
#24787
Re:SEO for fireboard still not answered 11 Months, 1 Week ago  
I am very newbie with php programing but here is an easy and partial solution for meta description I made if this can help someone else with Google SEO wile waiting next version of Fireboard:
(please note this is for fireboard beta, but you may adapt it for latest version)
Open /components/com_fireboard/template/defaut/view.php
Find on line 471:
Code: :


//set page title if on Mambo 4.5.2+
if ($leaf->parent == 0) {
$mainframe->setPageTitle($fmessage->subject . ' - ' . $fbConfig['board_title']);
}


After, ad:
Code: :



//set meta description hack by AlexandreFrance
$mosConfig_MetaDesc = ('Read our forum for the topic ' . $fmessage->subject );



I guess it may be not a clean php code as I am not a programmer, but this code work for my website and give me nice meta description on my fireboard!


Have fun

Alexandre
AlexandreFrance (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#24793
Re:SEO for fireboard still not answered 11 Months, 1 Week ago  
You may also try this code to get a better result:
Code:

$mosConfig_MetaDesc = ($objCatParentInfo->name.'  '.$objCatInfo->name.' - Read the message ' . $fmessage->subject );


If your are good with php, please try to find another hack to get first 15 or 20 words of the topic in meta description + another hack to show meta description on category views.
AlexandreFrance (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#24802
Re:SEO for fireboard still not answered 11 Months, 1 Week ago  
Another hack I just found to complete meta description hack:

Open listcat.php

Find:
Code:

// set page title
$mainframe->setPageTitle($fbConfig['board_title']);



Below, ad:

Code:

//set meta description hack by AlexandreFrance
$mosConfig_MetaDesc = ('Read our ' . $fbConfig['board_title']);





Open showcat.php
Find:
Code:

// set page title
//$mainframe->setPageTitle( $objCatParentInfo->name.' - '.$objCatInfo->name.' - '.$fbConfig['board_title'] );



Below, ad:


Code:

//set meta description hack by AlexandreFrance
$mosConfig_MetaDesc = ($objCatParentInfo->name . ' - ' . $objCatInfo->name);




Please feel free to give another tip if you can do better,

Best regards,

Alexandre
AlexandreFrance (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/09/27 02:17 By AlexandreFrance.
 
The administrator has disabled public write access.  
#24866
Re:SEO for fireboard still not answered 11 Months ago  
Here are the results as asked on another post:
(Edit: I could NOT Copy/Past of page source because of fireboard... but replaced "" by "" )


(!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd")
(html xmlns="www.w3.org/1999/xhtml")
(head)



(title) - Re: Comment proceder? - Forum tarot voyance ésotérisme(/title)
(meta name="description" content="Forums Tarot divinatoire Tarot de Marseille: Interprétation - Voir le message Re: Comment proceder?" /)
(meta name="keywords" content="tarot" /)

(meta name="robots" content="index, follow" /)
AlexandreFrance (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/09/27 12:28 By AlexandreFrance.
 
The administrator has disabled public write access.  
Go to top
Powered by FireBoard - Creditsget the latest posts directly to your desktop