I was facing the same issue and able to listen to the event using below two methods. 1. Using DataLayer Manager extension.2. Using custom code. Custom Code:if(dataLayer){for(var i=0; i < dataLayer.length; i++){if(dataLayer[i].event == "page_view"){trigger(); //fire the rule}}}