• I implemented Private Only because I need a site that only subscribers can access, but I still want RSS to work. Private Only now intercepts the RSS url with a login form, and just embedding the username and password in the feedburner URL won’t do it. What I really want to do is exclude the RSS URL from the Private Only plugin. Anyone know how I can do this?

    Thanks, Carol

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter cwapshere

    (@cwapshere)

    No need to answer – it was easy. I just had to change

    if (!is_user_logged_in()) {
    auth_redirect();
    }

    to

    if (!is_user_logged_in() and !is_feed()) {
    auth_redirect();
    }

    Thank you. I’ll implement this in the next update

    It would be nice to have the feed password protected as well. Some RSS clients allow you to acccess protected feeds by entering password.

    @nick D I don’t have a plan to add feed password protected feature to the new version. Though, that will be a good idea for another plugin

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

The topic ‘Private Only and RSS’ is closed to new replies.