Title: Subscription preferences empty
Last modified: August 31, 2016

---

# Subscription preferences empty

 *  Resolved [Than_sad](https://wordpress.org/support/users/than_sad/)
 * (@than_sad)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/subscription-preferences-empty/)
 * Hi,
 * When I´m trying to access post preferences page it looks empty. See it on: [http://www.than-sad.es/Files/Captura.png](http://www.than-sad.es/Files/Captura.png)
 * Best regards.
 * [https://wordpress.org/plugins/post-notif/](https://wordpress.org/plugins/post-notif/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Devon Ostendorf](https://wordpress.org/support/users/devonostendorf/)
 * (@devonostendorf)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/subscription-preferences-empty/#post-7109154)
 * Hi Than_sad,
 * Thanks for trying out Post Notif. I am sorry you’re running into issues with 
   it, however. The URL you’ve provided is not resolving for me (the page never 
   comes up) and this is not an issue that’s been reported before.
 * So, when you have a chance, would you please send me a screenshot (or a few screenshots,
   so I can see all) of your Post Notif settings (Settings >> Post Notif from the
   dashboard)? My email address is my first name at devonostendorf dot com.
 * Thanks,
    Devon
 *  Plugin Author [Devon Ostendorf](https://wordpress.org/support/users/devonostendorf/)
 * (@devonostendorf)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/subscription-preferences-empty/#post-7109239)
 * Just to wrap this up, Than and I determined the issue was a conflict with the
   [Events Manager](https://wordpress.org/plugins/events-manager) plugin (version
   5.6.2).
 * The issue is resolved, such that both Post Notif and Events Manager work properly,
   by changing line #13, in the em_content() function (../wp-content/plugins/events-
   manager/em-events.php) from:
 *  `if( empty($post) ) return $page_content; //fix for any other plugins calling
   the_content outside the loop`
 * to:
 *  `if ( empty( $post ) || ( ! ( $post->ID ) ) ) return $page_content; // Fix for
   any other plugins calling the_content outside the loop`
 * This is necessary because Events Manager assumes that if $post is **NOT** empty,
   that implies that $post->ID is assigned to something (other than 0). The way 
   Post Notif’s dynamic (“fake”) pages work, there **IS** a $post object but **NO**
   ID is set (since this is not a real, lasting page and I didn’t think it wise 
   to arbitrarily pick an ID that might later clash with a real page/post ID). The
   code change above merely treats an unset $post->ID as a reason to leave a page
   alone (equivalent to the existing check for an empty $post).
 * I hope this is helpful for anyone else who might encounter this issue.
 * Thanks,
    Devon

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Subscription preferences empty’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/post-notif_dce1e1.svg)
 * [Post Notif](https://wordpress.org/plugins/post-notif/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/post-notif/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/post-notif/)
 * [Active Topics](https://wordpress.org/support/plugin/post-notif/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/post-notif/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/post-notif/reviews/)

## Tags

 * [empty](https://wordpress.org/support/topic-tag/empty/)
 * [preferences](https://wordpress.org/support/topic-tag/preferences/)

 * 2 replies
 * 2 participants
 * Last reply from: [Devon Ostendorf](https://wordpress.org/support/users/devonostendorf/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/subscription-preferences-empty/#post-7109239)
 * Status: resolved