Magento Stores Ecommerce Search Engine Optimization

Sunday, April 19th, 2009

Magento Stores Ecommerce Search Engine Optimization 1.1. General Configuration Magento is one of the most search engine friendly e-commerce platforms straight out of the box, but there are several known issues that can be taken care of to optimize your Magento SEO. The first step is to get the most recent release, 1.2.1. Then, to [...]

Magento SEO friendly URLs

Tuesday, February 24th, 2009

I find out a big problem on my magento online store, the magento team change the related product’s URL to rewrited URL(don’t include catalog names).but the direct product URL default setting include catalog names. This way cause one product page have two URLs. Its important change your catalog’s URL rewrite rule.Admin -> System -> Configuration [...]

New Magento vasion support google sitemap

Friday, December 7th, 2007

In the magento new release the template/catalog file contain a new folder which name “seo”. within a sitemap folder.There are total two files:container.phtml and content.phtml. Support generate your google sitemap.Its a new confuction from our new magento develop. In next 100 days.Beta 1.0 will available.You could choice magento develop your online shopping store after that [...]

Magento Catalog URL rewrites available in new vasion

Wednesday, November 14th, 2007

Magento new update add catalog rewrite rules (for search engine optimization). its a good news for SEO. Right after the installation or upgrade go to the Admin -> System -> Cache Management, check the ‘Refresh Catalog Rewrites’ checkbox and click on ‘Save cache settings’ button in order to get new URL rewrites updated GUI for [...]

Magento Search engine friendly URL rewrite

Sunday, November 4th, 2007

Magento Search engine friendly URL rewrite screenshot that shows the database table related to this feature. Search Engine Optimization, URL rewrites. The release referenced in the image may be pushed back to next week.

What’s google see magento demo site

Thursday, November 1st, 2007

Skip to Main Content ». Search Site. Welcome to the Magento Demo Store! My Account · Log In · My Cart · My Wishlist · Checkout … demo.magentocommerce.com/review/product/list/id/39/ – 35k – Cached – Similar pages – Note this Coalesce: Functioning On Impatience T-Shirt Skip to Main Content ». Search Site. Welcome to the Magento Demo [...]

Magento CMS pages Meta Tags Control

Wednesday, October 10th, 2007

app\code\core\Mage\Page\Block\Html\Head.php public function toHtml() { //Start Edit $_cmsTitle = Mage::getSingleton(‘cms/page’)->getTitle(); if (strlen($_cmsTitle)>0){ $this->addText(‘<title>’.$_cmsTitle.’</title>’.”\n\t”); }else{ $this->addText(‘<title>’.$this->getTitle().’</title>’.”\n\t”); } //End Edit $this->addText(‘<meta http-equiv=”Content-Type” content=”‘.$this->getContentType().’”/>’.”\n\t”); $this->addText(‘<meta name=”description” content=”‘.$this->getDescription().’”/>’.”\n\t”); $this->addText(‘<meta name=”keywords” content=”‘.$this->getKeywords().’”/>’.”\n\t”); $this->addText(‘<meta name=”robots” content=”‘.$this->getRobots().’”/>’.”\n”); $this->addText($this->getAdditionalCssJs()); $this->addText($this->getChildHtml()); return parent::toHtml(); }