SEO Keyword Factory Improvement Suggestions 13 years 4 months ago #1

  • Baram
  • Localtime: 15:01
  • Europe/Bucharest
  • Posts: 1
Hello, I am using Keyword Factory 1.0.3.

I had some problems diplaying tags and here are my suggestions to improvements;
Well, I didn't want to display same content with different urls this will be punished by google and there will be canonical issues. www.google.com/support/webmasters/bin/an...?hl=en&answer=139066

My articles are  mostly written in Cyrillic. NEW_LINKs look something like this /-/ , /-1/  and so on.

So decided to let ARTIO JoomSEF to do the job with links routing. (This will let whatever SEO extension do its job actually)

I changed: in mod_keyword_factory.php

$tagLink[$tag->keywords] = $tag->new_link;  // to
$tagLink[$tag->keywords] = $tag->landing_page;

AND in helper.php
$query  = "SELECT `id_link`,`new_link`,`keywords`,`hits` FROM `#__kf_links` WHERE `published`=1";
$query  = "SELECT `id_link`,`landing_page`,`keywords`,`hits` FROM `#__kf_links` WHERE `published`=1";


Also there were some minor utf8 issues with href title parameters:
FIX:
mod_keyword_factory/tmpl/default.php

echo '<a href="'.$href.'" style="font-size: '.$size.'px;" class="fontadsCloudModule" title="'.htmlentities($k).'">'.$k.'</a>'." \n";

echo '<a href="'.$href.'" style="font-size: '.$size.'px;" class="fontadsCloudModule" title="'.htmlentities($k,ENT_QUOTES,"UTF-8").'">'.$k.'</a>'." \n";




The administrator has disabled public write access.