I would like to create a View that shows the last product viewed by a user. I am familiar with the process of creating Views but I'm not sure how to access the information of the 'last product'. Any help would be greatly appreciated.
Mon, 03/28/2011 - 19:31
Re: Create View of Last Product Viewed
CREATE VIEW [Current Product List] AS
SELECT Product ID,Product Name
FROM Products
WHERE Discontinued=No
query the view above as follows
SELECT * FROM [Current Product List]
Re: Create View of Last Product Viewed
Easiest way to show LATEST VIEWED PRODUCTS list ?
Hi,
Can you tell me what is the easiest way to show the latest viewed products list now ?
Thanks a lot.
Re: Re: Create View of Last Product Viewed
I haven't tried it yet but look/read here http://jan.tomka.name/blog/list-recently-viewed-nodes-drupal
