qrs
qrs

Reputation: 177

How to get Guest ID Magento

How does one get the Guest ID in Magento? I see it in administration under Customers>Guests but how can one print it on a page in the front end?

I found this for regular customers:

<?php
echo Mage::getSingleton('customer/session')->getId();
?>

Upvotes: 2

Views: 3372

Answers (2)

Steve Robbins
Steve Robbins

Reputation: 13812

$visitorData = Mage::getSingleton('core/session')->getVisitorData();
echo $visitorData['visitor_id'];

Upvotes: 5

Michael Leiss
Michael Leiss

Reputation: 5660

Mage::getModel('core/session')->getVisitorId();

good luck!

Upvotes: 1

Related Questions