Saturday, 24 May 2014
  8 Replies
  3.1K Visits
0
Votes
Undo
I set up an alert using the latest news plugin, and it worked for registered users but it never found new content for guest users. To fix this edit the file
plugins/emailalerts/jma_latestnews_js/jma_latestnews_js.php.

Change line 85 from
if(!$id){
to
if($id==NULL){

The first doesn't work since guest users are assigned an id of 0.