Subscribe2 daily digest option doesn’t work
-
I notice that Subscribe2 allows for you either to notify a subscriber for ea. post you publish; or to notify by daily digest. At a subscriber’s request, I’ve been trying unsuccessfully to follow the subscribe2.php instructions to get daily digest working. Here’s what the file says to do:
// change this to TRUE if you want a daily digest of the day's posts
// send to your subscribers
define('S2DIGEST', TRUE);//
Here’s what my relevant script looks like:
// are we doing daily digests? If so, don't send anything now
if ( defined('S2DIGEST') && TRUE === S2DIGEST ) { return; }//
I should add that both bits of code displayed the word FALSE originally. I changed the word to TRUE in the first bit of code as it directs, but daily digests didn’t happen. So I just changed the word to TRUE in the 2nd bit of code to see if that would activate the digest. Was what I did w. the 2nd bit of code wrong & should I change it back?
Are there any other portions of this file I need to change to get this to work? Can anyone tell fr. this post whether I’m doing something wrong or if there’s some other problem preventing this fr. working?
- The topic ‘Subscribe2 daily digest option doesn’t work’ is closed to new replies.