| Re: SEO options |
| by OzgurOz on 2011/6/22 11:30:45 thanks Wishcraft We need this tips actually |
| Re: SEO options |
| by wishcraft on 2011/6/22 10:43:08 Well some of the SEO Technics at XOOPS.ORG is theme hacks like Anti keyword Stuffing, this is what turned xoops.org from page rank 9 to 10 where it always fluxates between 10 and 9 so it doesn't report. Adapt this in your theme to remove keyword stuffing which is a big knock out. This is the title tag in the metas of your theme le="color: #000000"><?php <title><{if $xoops_pagetitle !=''}><{$xoops_pagetitle}> - <{/if}><{$xoops_sitename}></title> This is the 'keywords' tag. le="color: #000000"><?php <meta name="keywords" content="<{php}>$pg_title = $this->_tpl_vars['xoops_pagetitle'].','.$this->_tpl_vars['xoops_sitename']; $pg_title = str_replace(' ',',',$pg_title); $pg_title = str_replace('-',',',$pg_title); $pg_title = str_replace('|',',',$pg_title); $pg_title = str_replace(':',',',$pg_title); $pg_title = str_replace('=',',',$pg_title); $pg_title = str_replace('&',',',$pg_title); $pg_title = str_replace(')','',$pg_title); $pg_title = str_replace('(','',$pg_title); $pg_title = str_replace('[','',$pg_title); $pg_title = str_replace(']','',$pg_title); $pg_title = str_replace('{','',$pg_title); $pg_title = str_replace('}','',$pg_title); $pg_title = str_replace(' and ',',',$pg_title); $pg_title = str_replace(' the ',',',$pg_title); $pg_title = str_replace(',,',',',$pg_title); $pg_title = str_replace(',,',',',$pg_title); $pg_title = str_replace(',,',',',$pg_title); $pg_title .= ",".$this->_tpl_vars['xoops_meta_keywords']; $pg_array = explode(",",$pg_title); $pg_array = array_unique($pg_array); echo implode(",",$pg_array);<{/php}>" /> The description tag is not really used these days, if you remove it in the search engines the whole page become searchable for information so you can not normally search for if the tag exists so render it out sometimes it is better to provide better organic and more keywords and data to search. le="color: #000000"><?php <!--<meta name="description" content="<{$xoops_meta_description}>" />--> Otherwise the alternative in anti keyword stuffing, you can make description in the meta tags appear when $xoops_dirname == 'system' which will display it on the home page and any other system pages. the following code will do that. le="color: #000000"><?php <{if $xoops_dirname eq 'system'}> <meta name="description" content="<{$xoops_meta_description}>" /> <{/if}> The other thing is we went through the modules and made sure the page title was descriptive of the page contain categories and item names for example with other data as well. XOOPS.ORG for example has https://xoops.org/sitemap.php which indexes and lists us in minutes on the forum and other parts of the website, yeah adding a sitemap is important. Well actually had one, here is another one http://www.chronolabs.coop/sitemap.php here is the code for this example seeming it is OS, this file normally has to be written for individual websites with XOOPS 2 Series. Also having a session and username as provided with spiders, allows for better SEO Scores so the Googlebot or Yahoo Slurp! is an identity in the website, this reoccures the session variable for next time it comes back and improves SEO Score. |
| Re: SEO options |
| by OzgurOz on 2011/6/22 8:06:44 my site's score is 89... But different SEO analyser not agree with this score.For example wooranks said 56. I dont know why the scores are different. I love xoops.But I think we must have SEO knowladge... xoops.org can lead us about SEO especially for the beginner user. |
| Re: SEO options |
| by voltan on 2011/2/25 19:39:55 you can check seo rank att here : http://websitegrader.com http://websitegrader.com/site/www.xoops.org xoops.org rank is good but other XOOPS sites not good !!!! |
| Re: SEO options |
| by voltan on 2011/2/25 19:37:35 at this momet just seo option in XOOPS is tag module and google want ignoring the Title Tag http://www.seo.com/blog/google-ignoring-title-tag/ |