Dominik Rauch
Forum Replies Created
-
Forum: Plugins
In reply to: [Asgaros Forum] Dirty URLHey @giovanni1968,
it seems like you have a problem with Ultimate Member and not with our plugin Asgaros Forum. Can you please reach them out in their Support Forum: https://www.ads-software.com/plugins/ultimate-member/
Forum: Plugins
In reply to: [Asgaros Forum] How to change the URLs?And you can do the same with topics in
wp_forum_topics
and the forums inwp_forum_forums
.Forum: Plugins
In reply to: [Asgaros Forum] How to change the URLs?Hey @triptikon,
we already have this on our list.
At the moment you would have to recreate the category or login to you your database and change it manually in
wp_terms
. You can change the slug here but have to make sure that this slug is not used for another category and that it is a slug. You can use a tool like https://slugify.online/ to create the slug.And always write a backup of your database before changing anything manually in there. So if you do something wrong you can always restore it from the backup.
If your your forum is already public, you should also consider to redirect from the old slug to the new one.
Forum: Plugins
In reply to: [Asgaros Forum] New conflict foundHey @startuprichmond,
Thank you for the information. Async loading of javascript could always cause problems with some plugins or themes.
Forum: Plugins
In reply to: [Asgaros Forum] Phantom alertsHey @kvetos,
can you please install this plugin and activate the email log:
https://www.ads-software.com/plugins/check-email/After that you can see how many people are affected.
What about the notifications that you get? Are the links correct in there? It seems like it is not able to read the topic and post name, since the link is not complete.
I think it has nothing to with bots. I guess it is some misconfiguration or incompatibility with another plugin or theme.
Forum: Plugins
In reply to: [Asgaros Forum] How Can I add an Image to the forum titleHey @elforoone,
unfortunately, by default that is not possible at the moment. You would need someone who will write you some code to add this feature.
I’ve also checked your website, but you are not using Asgaros Forum.
Forum: Plugins
In reply to: [Asgaros Forum] Phantom alertsHey @kvetos,
as an Admin you should be able to see all Posts and Topics in all Categories. First of all, you should ask for the E-Mails of your users to see if you can find these posts as an admin.
It could be also possible that your E-Mails are delayed. Can you please check this and let me know.
Forum: Plugins
In reply to: [Asgaros Forum] Users getting notification about new topicsHey @technicus,
These users just have to deactivate the subscriptions. Tell them to go to Subscriptions and select “Individual Subscriptions” and remove subscriptions, if they have subscribed to any topic or category.
You can find some further information about this here:
https://www.asgaros.de/docs/users-guide/responses-and-subscriptions/subscription-management/
Forum: Plugins
In reply to: [Toolbox for Asgaros Forum] Ultimate member fatal errorHey @douzaleur,
I will set this topic to resolved since it is not related to my plugin.
Can you please activate the debug log, activate UM again and check the file debug.log in wp-content directory:
– Access your server via FTP or SSH
– Find and open the wp-config.php file in the main directory of your WordPress installation
– Search for the line that contains:
define('WP_DEBUG', false);
And replace it with the following three lines:define( 'WP_DEBUG', true ); define( 'WP_DEBUG_DISPLAY', false ); define( 'WP_DEBUG_LOG', true );
Forum: Plugins
In reply to: [Toolbox for Asgaros Forum] Ultimate member fatal errorHey @douzaleur,
can you please share the full error that you receive after activating Ultimate Member?
Do you get the same error if “Toolbox for Asgaros Forum” is deactivated?
Forum: Plugins
In reply to: [Asgaros Forum] How can an user block another user?Hey @markalbs1981,
I don’t know a plugin that supports this functionality and it also seems to be really uncommon. A forum should be open communication. If there is someone abusive then the admin or moderator should delete or change this post. The users can use the report function to inform an admin or moderator.
If you want to implement this function it would be possible to hire a programmer to add this functionality to your forum.
Forum: Plugins
In reply to: [Asgaros Forum] Mass Import WordPress AccountHey @ericpo,
the usergroups are saved in “wp_term_relationships” where “object_id” is the user ID and “term_taxonomy_id” is the ID of the Usergroup.
So you will have to insert the IDs of the user and of the usergroup to this table.
Forum: Plugins
In reply to: [Asgaros Forum] How to hide the last chain of breadcrumbs?Yes, that is what you would need to change. You will have to create your own logic and insert it before the menu.
Forum: Plugins
In reply to: [Asgaros Forum] MONALISA WITH AsgarosHey @funtobegay,
Asgaros Forum is using TinyMCE be default, that’s the name of this editor that is shown.
You just have to install the plugin Monalisa and set it up and your users can use smileys.
Forum: Plugins
In reply to: [Asgaros Forum] How to hide the last chain of breadcrumbs?Hey @triptikon,
for the forum overview you can use this CSS:
body.asgaros-forum-overview #forum-breadcrumbs > span:nth-child(3) { display: none !important; }
I know how to change the logic, but it is not as simple as just writing some CSS. You have to write another plugin and customize the breadcrumbs there. But I can’t offer this as free support, that’s why I advised you to search for a programmer for that.