Subscription – permanent option
Quote from fernandolawl on June 27, 2018, 9:24 pmHello. Is there a way to make my users permanently receive “new topics” notifications on top of having the ability to subscribe to topics.
I want users to have to receive “new topics”.
Screen shot attached.
Thanks
PS. Even if there was a way to make the “Subscriptions” link hidden, that would be satisfactory. Just like how we have the option to show/not show Login/Logout button, Register button, etc.
PPS. Let me know which php file and line of code I need to remove so it doesn’t generate the “subscriptions” link.
Hello. Is there a way to make my users permanently receive “new topics” notifications on top of having the ability to subscribe to topics.
I want users to have to receive “new topics”.
Screen shot attached.
Thanks
PS. Even if there was a way to make the “Subscriptions” link hidden, that would be satisfactory. Just like how we have the option to show/not show Login/Logout button, Register button, etc.
PPS. Let me know which php file and line of code I need to remove so it doesn’t generate the “subscriptions” link.
Uploaded files:Quote from fernandolawl on June 27, 2018, 11:10 pmI think I found a way to make it hidden.
function showHeader() { echo '<div id="forum-header">'; echo '<div id="forum-navigation-mobile">'; echo '<a class="dashicons-before dashicons-menu">'.__('Menu', 'asgaros-forum').'</a>'; echo '</div>'; echo '<div id="forum-navigation">'; echo '<a href="'.$this->get_link('home').'">'.__('Forum', 'asgaros-forum').'</a>'; $this->profile->renderCurrentUsersProfileLink(); $this->memberslist->renderMembersListLink(); //$this->notifications->show_subscription_overview_link(); $this->activity->show_activity_link(); $this->showLoginLink(); $this->showRegisterLink(); $this->showLogoutLink();
I think I found a way to make it hidden.
function showHeader() { echo '<div id="forum-header">'; echo '<div id="forum-navigation-mobile">'; echo '<a class="dashicons-before dashicons-menu">'.__('Menu', 'asgaros-forum').'</a>'; echo '</div>'; echo '<div id="forum-navigation">'; echo '<a href="'.$this->get_link('home').'">'.__('Forum', 'asgaros-forum').'</a>'; $this->profile->renderCurrentUsersProfileLink(); $this->memberslist->renderMembersListLink(); //$this->notifications->show_subscription_overview_link(); $this->activity->show_activity_link(); $this->showLoginLink(); $this->showRegisterLink(); $this->showLogoutLink();
Quote from Asgaros on June 28, 2018, 7:08 pmHello @fernandolawl
Basically every user who set his Subscription Settings to “New Topics” gets notified about every new topic.
I didnt add a global option for this yet because a lot of countries have strict rules/laws about unwanted messages. This means: Sending mails to users without their agreement can bring you some troubles. Thats the reason why this functionality is currently opt-in only.
Hello @fernandolawl
Basically every user who set his Subscription Settings to “New Topics” gets notified about every new topic.
I didnt add a global option for this yet because a lot of countries have strict rules/laws about unwanted messages. This means: Sending mails to users without their agreement can bring you some troubles. Thats the reason why this functionality is currently opt-in only.