Is my directory Dofollow? - eSyndiCat User Forums
eSyndiCat User Forums esyndicat directory software esyndicat support

Go Back   eSyndiCat User Forums > Common Information > Search Engine Optimization

Search Engine Optimization Want to improve your site rank and positions? Then this forum is definitely for you. Read link exchange and search engine optimization tips and tricks. Get more power with new SEO tools discussed here. Get professional advice and more... DO NOT POST YOUR LINK EXCHANGE REQUESTS HERE OR INFORMATION ABOUT YOUR DIRECTORIES. They will be interpreted as spam and deleted.

 
 
Thread Tools Display Modes
Old 06-07-2011   #1
brasil67
 
Join Date: Apr 2011
Posts: 3
brasil67 is on a distinguished road
Default Is my directory Dofollow?

Hello,

I did post in few forums to publish my directory, but one guy told me twice this,
"Dofollow does not exist!" and ask him what does mean and he said could not be more clear as is, so my question is how I can make sure if my directory is Dofollow, or if there is any how we can change it.

[moderated]www.example.com[/moderated]

Thanks.

Last edited by Serge H.; 06-08-2011 at 07:51 AM.
brasil67 is offline  
Old 06-08-2011   #2
Alex B.
Tech Support
 
Alex B.'s Avatar
 
Join Date: Oct 2008
Posts: 1,069
Alex B. is on a distinguished road
Default

Hello brasil67!
Welcome to our support forums.
First of all, please read this article.
Actually «Dofollow» links mean links that have «nofollow» attribute. Your directory has both. So I don't know what this guy actually meant.
As you can read in the article, nofollow links are not bad things.
Though, maybe this guy meant that on the forums where you published your directory, the link to your directory is nofollow. So try to check it.
__________________
Best Regards, Alex B.
HELPDESK
Alex B. is offline  
Old 06-08-2011   #3
brasil67
 
Join Date: Apr 2011
Posts: 3
brasil67 is on a distinguished road
Default

Thanks for your reply,
Sorry but still have question after reading that article, I could not get the point, for my directory in PR4 what is best to do with?

This was part the announces that I did in other forum.
Regardless of the option, they are all dofollow links.

and then he type this.
Dofollow does not exist!

Please tell me what is the best way to do in my older directories, also I will start new directories in this week and what will be the best way for new directory.

Sorry I'm really newby in SEO.

Thanks.
brasil67 is offline  
Old 06-09-2011   #4
Alex B.
Tech Support
 
Alex B.'s Avatar
 
Join Date: Oct 2008
Posts: 1,069
Alex B. is on a distinguished road
Default

I still can not understand why this guy need dofollows?
Could you explain me?

Anyway if your site has/has not nofollow links it doesn't influence on your PR.
If some external links on your site are dofollow they «take» a little part of your PR for the site the link points to.
__________________
Best Regards, Alex B.
HELPDESK
Alex B. is offline  
Old 06-11-2011   #5
brasil67
 
Join Date: Apr 2011
Posts: 3
brasil67 is on a distinguished road
Default

Quote:
Originally Posted by Alex B. View Post
I still can not understand why this guy need dofollows?
Could you explain me?

Anyway if your site has/has not nofollow links it doesn't influence on your PR.
If some external links on your site are dofollow they «take» a little part of your PR for the site the link points to.
Hello,
I think the mistake was mine because, I was offering that my directory is do follow listing so then he came telling me that, now I will stop after catch the vision of that , anyway so will be all the paid submission dofollow?, how I will know that, because I noticed there is some free submission is dofollow, I did check some free list and with this links does not have any flag is when there is flag it show as nofollow , is this link dofollow?

I wish to offer only dofollow when is paid submission.

Thanks.
brasil67 is offline  
Old 06-13-2011   #6
Alex B.
Tech Support
 
Alex B.'s Avatar
 
Join Date: Oct 2008
Posts: 1,069
Alex B. is on a distinguished road
Default

Here is a little modification that will make all sponsored, featured and partner listings' URLs dofollow and regular listings' URLs — nofollow.

[Open the file templates/your-current-template/view-listing.tpl]

[Find this line: ]
HTML Code:
<td><a href="{$listing.url|lower}" id="l{$listing.id}" {if $config.new_window}target="_blank"{/if}>{$listing.title}</a></td>
[Replace it with this one: ]

HTML Code:
<td><a href="{$listing.url|lower}" id="l{$listing.id}" {if $config.new_window}target="_blank"{/if} {if $listing.partner eq '0' && $listing.sponsored eq '0' && $listing.featured eq '0'}rel="nofollow"{/if}>{$listing.title}</a></td>
[Save the changes]
__________________
Best Regards, Alex B.
HELPDESK
Alex B. is offline  
Old 06-22-2011   #7
Commic
 
Join Date: Apr 2011
Location: Amsterdam, the Netherlands
Posts: 72
Commic is on a distinguished road
Default

This works nicely and was just what I was looking for.

A small addition would even make it complete;

If the Reciprocal URL of the Regular URL is NOT empty, the nofollow should not be added.
For seo reasons this would be good for the link juice :-)

In that context; I see no anchor text with the link.
Is there some way an anchor text could be added, preferably as a field in the 'suggest listing form'? (I am sure it can but I would have no clue as where to start :-)

Thanks for the good work though!
Commic is offline  
Old 06-23-2011   #8
Alex B.
Tech Support
 
Alex B.'s Avatar
 
Join Date: Oct 2008
Posts: 1,069
Alex B. is on a distinguished road
Default

Quote:
If the Reciprocal URL of the Regular URL is NOT empty, the nofollow should not be added.
For seo reasons this would be good for the link juice :-)
Replace the same line with:
HTML Code:
<td><a href="{$listing.url|lower}" id="l{$listing.id}" {if $config.new_window}target="_blank"{/if} {if $listing.partner eq '0' && $listing.sponsored eq '0' && $listing.featured eq '0' && $listing.recip_valid eq '1'}rel="nofollow"{/if}>{$listing.title}</a></td>
Quote:
Is there some way an anchor text could be added, preferably as a field in the 'suggest listing form'? (I am sure it can but I would have no clue as where to start :-)
Create a text field and use the smarty tag: {$listing.field_name}
where «field_name» is the name you would give to the field.
__________________
Best Regards, Alex B.
HELPDESK
Alex B. is offline  
Old 06-27-2011   #9
Commic
 
Join Date: Apr 2011
Location: Amsterdam, the Netherlands
Posts: 72
Commic is on a distinguished road
Default

Alex, the first solution worked great. After replacing it with your scnd suggestion, the rel='nofollow' disappears on all my listings including those that have an empty reciprocal field.

As far as {$listing.field_name} is concerned, must I include the Smarty tag in the template where I want it?
Commic is offline  
Old 06-28-2011   #10
Alex B.
Tech Support
 
Alex B.'s Avatar
 
Join Date: Oct 2008
Posts: 1,069
Alex B. is on a distinguished road
Default

Quote:
Alex, the first solution worked great. After replacing it with your scnd suggestion, the rel='nofollow' disappears on all my listings including those that have an empty reciprocal field.
Does your script checks for valid reciprocal link? Probably, that caused the issue.
You have to check all the listings for reciprocal links first. Otherwise remove the code: && $listing.recip_valid eq '1'.
Quote:
As far as {$listing.field_name} is concerned, must I include the Smarty tag in the template where I want it?
That's right.
__________________
Best Regards, Alex B.
HELPDESK
Alex B. is offline  
 

Tags
director web

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT. The time now is 04:33 AM.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Testimonials | Articles | Support | Documentation | Privacy Policy | License | Affiliates | Contact Us