Skip to content

Instantly share code, notes, and snippets.

@vkathirvel
Created September 12, 2015 09:49
Show Gist options
  • Save vkathirvel/43b7b46b2f06ad6ebfb3 to your computer and use it in GitHub Desktop.
Save vkathirvel/43b7b46b2f06ad6ebfb3 to your computer and use it in GitHub Desktop.
Magento remove SID=U from GetURL
$categoryLink = Mage::getModel("catalog/category")->load(10)->getUrl();
$pos = strpos($categoryLink, '?');
$categoryLink = ($pos>0) ? substr($categoryLink, 0, $pos) : $categoryLink;
@sprankhub
Copy link

The right way to do this is explained here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment