FAQ – Frequently Asked Questions
Quote from jarmar7 on April 22, 2020, 11:35 amGood morning,
I want to delete these messages: You need to log in to create posts and topics.I don’t want to register users.
The forum is to act as my insights from the world.Regards
jarmar7
Good morning,
I want to delete these messages: You need to log in to create posts and topics.
I don’t want to register users.
The forum is to act as my insights from the world.
Regards
jarmar7
Quote from jarmar7 on April 22, 2020, 2:01 pmI understand.
But I mean completely blocking the forum for external users.
They can only read and browse.
I have a bad experience with a former forum.
I don’t want to feel rudeness, profanity and other annoyances.Best regards
– Marek Jarzynka
But I mean completely blocking the forum for external users.
They can only read and browse.
I have a bad experience with a former forum.
I don’t want to feel rudeness, profanity and other annoyances.
Best regards
– Marek Jarzynka
Quote from jarmar7 on April 22, 2020, 10:39 pmGood evening,
corrected.
The message on the front side no longer displays on a yellow background.
https://1953.plRegards,
– jarmar7
Good evening,
corrected.
The message on the front side no longer displays on a yellow background.
https://1953.pl
Regards,
– jarmar7
Quote from Asgaros on April 28, 2020, 3:40 amHello @jeanne
Currently this is not possible and users have to opt-in manually for any notifications.
@jarmar7
You can hide the login-message by adding the following code to Forum -> Appearance -> Custom CSS:
.notices-panel { display: none; }
Hello @jeanne
Currently this is not possible and users have to opt-in manually for any notifications.
You can hide the login-message by adding the following code to Forum -> Appearance -> Custom CSS:
.notices-panel { display: none; }
Quote from nmonteiro@zesteventos.pt on December 17, 2020, 10:18 pmHello,
I have the box “Anyone can register” checked but when someone register on my forum they don’t receive any e-mail to conclude this registration.
Why is that? Does someone know why they don’t receive the emails?
Kind Regards
Hello,
I have the box “Anyone can register” checked but when someone register on my forum they don’t receive any e-mail to conclude this registration.
Why is that? Does someone know why they don’t receive the emails?
Kind Regards
Quote from qualmy91 on January 2, 2021, 8:38 amHey @nmonteirozesteventos-pt,
please follow the steps from this post:
https://asgaros.com/support/topic/multiple-issues-getting-forums-set-up/
It’s a general problem with WordPress and how it sends emails.
please follow the steps from this post:
https://asgaros.com/support/topic/multiple-issues-getting-forums-set-up/
It’s a general problem with WordPress and how it sends emails.
Quote from sam2019 on May 17, 2021, 10:08 amHi, is there an option for the moderator or admin to move a message to a different thread (not a thread to a different subforum)?
thanx
-sam
Hi, is there an option for the moderator or admin to move a message to a different thread (not a thread to a different subforum)?
thanx
-sam
Quote from Rob on February 19, 2022, 3:07 pmQuote from Jeanne on April 21, 2020, 5:43 pmHello, is it possible for an administrator to subscribe all users to new topics and forum posts?
ThanksWe also submitted a request that would allow an administrator to have a checkbox in the User Profile that would allow us to Subscribe News & Posts (Everything) for the user created. Thereafter, we can change the setting at any time.
Quote from Jeanne on April 21, 2020, 5:43 pmHello, is it possible for an administrator to subscribe all users to new topics and forum posts?
Thanks
We also submitted a request that would allow an administrator to have a checkbox in the User Profile that would allow us to Subscribe News & Posts (Everything) for the user created. Thereafter, we can change the setting at any time.
Quote from Jim on February 19, 2022, 5:32 pmAsgaros has made it clear that there will be no built-in automatic subscription of any kind; it goes against EU privacy law.
If you still want to auto-subscribe new site registrants to all topics and posts, put this in your functions.php:
add_action('user_register', 'af_change_subscription_settings', 10, 1); function af_change_subscription_settings($user_id) { update_user_meta( $user_id, 'asgarosforum_subscription_global_posts', 1 ); }This will not affect existing users. If you want to subscribe new registrants to new topics only (not replies), change
asgarosforum_subscription_global_posts
toasgarosforum_subscription_global_topics
.
Asgaros has made it clear that there will be no built-in automatic subscription of any kind; it goes against EU privacy law.
If you still want to auto-subscribe new site registrants to all topics and posts, put this in your functions.php:
add_action('user_register', 'af_change_subscription_settings', 10, 1); function af_change_subscription_settings($user_id) { update_user_meta( $user_id, 'asgarosforum_subscription_global_posts', 1 ); }
This will not affect existing users. If you want to subscribe new registrants to new topics only (not replies), change asgarosforum_subscription_global_posts
to asgarosforum_subscription_global_topics
.