| :: |
| Author |
Message |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 205
|
Posted: Wed Nov 07, 2007 1:16 pm Post subject: Is bookmarking mod good or bad for SEO |
|
|
I have recently added a bookmarking mod to my phpbb forum. It has placed links and graphics at the top of each topic.
Now I have just checked Google - http://www.google.co.uk/search?q=site:www.ultimatehandyman.co.uk&hl=en&start=270&sa=N
And instead of having the topic line at the top of each description for the topic it says "Bookmark This Page Bookmark in co.mments · Bookmark in delicious · Bookmark in digg · Bookmark in blogmarks · Bookmark in blinklist · Bookmark in ..."
Is this going to be bad for SEO?
You can see the mod by clicking on the DIY forum link in my sig and then viewing a topic.
Thanks in advance
chez |
_________________ DIY | DIY directory |DIY forum |
|
| Back to top |
|
 |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3128
|
Posted: Wed Nov 07, 2007 5:28 pm Post subject: Re: Is bookmarking mod good or bad for SEO |
|
|
Social bookmark links are good because they increase the probability to have backlinks from the social bookmarking services listed, but, they still are external links, and can be PR leaks.
They can as well increase the weight of the page, and the text part is not really interesting.
So that's why our Simple social bookmarking mod uses JS to build the output, bots only see :
| Code: | <script language="javascript">
social_bookmarks();
</script> |
But users with JS (I think we can say that the majority of the people using social back-linking uses as well JS) will have the full output, as you can see on this page bellow.
Of course, you can easily put the code wherever you prefer and adapt it for any site. |
_________________
|
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 205
|
Posted: Thu Nov 08, 2007 8:53 am Post subject: Re: Is bookmarking mod good or bad for SEO |
|
|
Thanks
I have removed the bookmarking script that I had installed and replaced it with the phpbb seo one.
My pages seem to be loading faster already as the last mod seemed to take a while for the images to load.
Thanks very much  |
_________________ DIY | DIY directory |DIY forum |
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 205
|
Posted: Fri Nov 09, 2007 11:20 am Post subject: Re: Is bookmarking mod good or bad for SEO |
|
|
I am wondering if I could use this mod on some of the static pages on my site
dcz- is it ok for me to use this mod on static pages as well as the forum please? |
_________________ DIY | DIY directory |DIY forum |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 205
|
Posted: Sun Nov 11, 2007 7:22 pm Post subject: Re: Is bookmarking mod good or bad for SEO |
|
|
| dcz wrote: | | ultimatehandyman wrote: |
dcz- is it ok for me to use this mod on static pages as well as the forum please? |
But of course
The mod's install is designed for phpBB, but, the mod's principle can work with any page on the web.
++ |
Excellent,
Thanks
By the way I have been approached my Kontera and should implement it soon on my site. |
_________________ DIY | DIY directory |DIY forum |
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 205
|
Posted: Sun Nov 11, 2007 9:09 pm Post subject: Re: Is bookmarking mod good or bad for SEO |
|
|
I have tried to get the mod to work with static pages, but for some reason my pages do not seem to like it when I copy this into the page-
| Code: | // www.phpBB-SEO.com SEO TOOLKIT BEGIN - Simple Social Bookmarks
'U_SBOOKMARK_JS' => "sbjs/{$board_config['default_lang']}/bookmarks.js",
// www.phpBB-SEO.com SEO TOOLKIT END - Simple Social Bookmarks |
I added this line beneath the line on my page that points to the css page-
| Code: | | <script src="{U_SBOOKMARK_JS}" type="text/javascript"></script> |
and I added this line where I want the bookmarks to appear-
| Code: | <script language="javascript">
social_bookmarks();
</script> |
I'm not sure why it is not working, but feel it is something to do with the first piece of code?
Thanks in advance to anyone that can advise. |
_________________ DIY | DIY directory |DIY forum |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
Posted: Sun Nov 18, 2007 4:42 pm Post subject: Re: Is bookmarking mod good or bad for SEO |
|
|
You just need to add :
| Code: | | <script src="http://www.example.com/path/to/bookmarks.js" type="text/javascript"></script> |
, replacing -www.example.com/path/to/ with the proper information, before :
in your other pages, and then :
| Code: | <script language="javascript">
social_bookmarks();
</script> |
where you want the bookmarking code to show up. The first piece of code you mentioned is only useful within phpBB.
You may want to use a dedicated bookmarks.js file for the site in a separate dir from the forum one, in order to adapt it a bit to your site design. Have a look in the bookmarks.js file, you can change the html output pretty easily.
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 205
|
Posted: Sun Nov 18, 2007 8:56 pm Post subject: Re: Is bookmarking mod good or bad for SEO |
|
|
Thanks dcz,
I will take a look at this in the next few days when I have time.
Thanks for all your help, it is much appreciated  |
_________________ DIY | DIY directory |DIY forum |
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 205
|
Posted: Mon Nov 19, 2007 6:53 pm Post subject: Re: Is bookmarking mod good or bad for SEO |
|
|
I have installed the code on a few pages now and it works great
Thanks again dcz  |
_________________ DIY | DIY directory |DIY forum |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
primadd
Joined: 28 Jan 2008 Posts: 2
|
Posted: Mon Jan 28, 2008 1:12 am Post subject: Re: Is bookmarking mod good or bad for SEO |
|
|
Might I suggest a different route, use a javascript only solution like primadd. If you remove the no-script block you can be sure to not have it indexed at all.
See -http://primadd.net/plugins/phpbb3/ for the plugin, albeit if you want to remove the no script part you either have to modify the plugin or add the code by hand to your template.*
*then again, since to my knowledge there aren't any automated phpbb3 plugin managers you have to apply it by hand anyways.
if you have any questions or suggestions feel free to contact me by pm or email (listed on page )
cheers
primadd |
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3128
|
Posted: Tue Jan 29, 2008 12:31 am Post subject: Re: Is bookmarking mod good or bad for SEO |
|
|
But this is what the mod we are talking about is doing, all js. Makes your post even closer to spam  |
_________________
|
|
| Back to top |
|
 |
|
|