Magento list - User search terms ( current user ) -


i list search terms used current user.

also categories user entered.

so has been mentioned in comments section magento logs search queries not user.

to log user's visits category observe following event:

mage::dispatchevent(     'catalog_controller_category_init_after',         array(             'category' => $category,             'controller_action' => $this         )     ); 

to log user's searches suggest observing event:

catalogsearch_query_save_after 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -