Obtendo um URL de produtos Potencialmente confuso devido aos 3 métodos que você poderia usar, todos eles em Mage_Catalog_Model_Product:
public function getUrlPath($category=null)
public function getUrlInStore($params = array())
public function getProductUrl($useSid = null)
A melhor maneira de explicar é simplesmente mostrar os resultados de várias chamadas. Dado um produto cuja chave de URL é mondrian-large-coffee-table-set-multicolour no domínio de http: //made.local, os resultados são:
$product->getUrlPath();
'mondrian-large-coffee-table-set-multicolour'
$product->getUrlPath($category);
'tables/mondrian-large-coffee-table-set-multicolour'
// you cannot stop this method adding ___store to the URL, even by setting _store_to_url to false
$product->getUrlInStore();
'http://made.local/tables/mondrian-large-coffee-table-set-multicolour?___store=default'
// you cannot stop this method adding ___store to the URL, even by setting _store_to_url to false
// note - see the "using _ignore_category" section below for an arguable bug with using this param
$product->getUrlInStore(array('_ignore_category' => true));
'http://made.local/mondrian-large-coffee-table-set-multicolour?___store=default'
$product->getProductUrl();
'http://made.local/tables/mondrian-large-coffee-table-set-multicolour'
$product->getProductUrl(true);
'http://made.local/tables/mondrian-large-coffee-table-set-multicolour'
Exemplo mostrando o carregando do objeto produto por ID
$produto = Mage::getModel('catalog/product')->load( $id_produto );
$mensagem = '