• Hello, Currently we are running a WP multisite with many users. We are glad to have access to Subscribe2 so that announcements can be sent out to our list of subscribers, who also happen to be authors on the site.

    We do not want our subscribers to be able to unsubscribe from particular authors, nor do we want the subscribers to have access to the list of authors under “Your Subscriptions” on their WP dashboard for privacy reasons. For this reason we commented lines 172-181 of wp-content > plugins > subscribe2 > admin > your_subscriptions.php to hide list of authors. See below for code:

    _____________________

    /*
    if ( count($this->get_authors()) > 1 && $this->subscribe2_options[’email_freq’] == ‘never’ ) {
    echo “<div class=\”s2_admin\” id=\”s2_authors\”>\r\n”;
    echo “<h2>” . __(‘Do not send notifications for post made by these authors’, ‘subscribe2’) . “</h2>\r\n”;
    $this->display_author_form(explode(‘,’, get_user_meta($user_ID, $this->get_usermeta_keyname(‘s2_authors’), true)));
    echo “</div>\r\n”;
    }
    */

    This is a custom edit we have to do every time the plugin is updated, so we are recommending a setting that makes it so users can’t modify their subscriptions to begin with. I would like to hear if this is an issue that other Subscribe2 users have come across and if there is a possibility that this setting can be recommended.

    https://ww.wp.xz.cn/plugins/subscribe2/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘A setting so users can’t modify their subscriptions’ is closed to new replies.