Forum Replies Created
-
In reply to: Changing “Forum” to something else
Ok. Thanks a lot.
In reply to: Changing “Forum” to something elseI use the GD Quantum Theme Pro for bbPress plugin for the bbPress layout and Paidmemberships Pro for my membership website. Even after deactivating both, there is still the Forum, Topics, Posts, and Last Post bar appearing in bbPress, which seems all but normal to me: https://postimg.cc/wR1SkHWY
My question is: Can I change “Forum” in that bar to something else?
In reply to: Changing “Forum” to something else?!
Not for me when I click on it. The image is on the left-hand side of the screen. Alternatively, you can try https://postimg.cc/r0h9YRn0.
In reply to: Changing “Forum” to something elseHi,
I followed method 1.
Bad news: The title of my page is Forums; however, there is no such title or anything at all relating to forum(s) in the WP pages list. I came across a similar issue once and there was a technical reason for it but, of course, I forgot which it was. For now, that can be left aside.
Good news: The “bad news” is not related to what I am looking for. The image link I gave will show you.
In reply to: Changing “Forum” to something elseHi Robin,
The question I asked is still an issue for me.
1/ The layout says “Forum,” not “forums,” as for the root and single slugs in the settings. So, I am not sure we speak of the same thing. You will see here an image of what I mean: https://i.postimg.cc/QCDnCpcb/Screenshot-2023-09-03-174309.jpg
2/ If I change the root slug (in the settings), I then get a “page not found” in the front end. That is normal, but how do I sync the slug change on the forum page itself since there is no such page in the WP list of pages?
Thanks again
In reply to: Moderators for the same forumThank you both.
In reply to: Moderators for the same forumThank you so much. I’ll let you know in a few weeks’ time how it goes.
In reply to: Moderators for the same forumThank you.
I will definitely keep this code handy. I will have several forums and need the code to function only for what will be the “Training” category of forums. Can this category be implemented in the code?
In reply to: Moderators for the same forumWhy set people as moderators if I don’t trust them? Because, in my case, it is not about moderating. I have to create hidden training groups that concerned people exclusively will see. The only way is to make them moderators for their relevant group.
There will eventually be dozens of groups and I would like to delete them when their training is over, so the Private Groups plugin is hardly the answer here.
My concern is that some lunatics decide to remove posts or replies from others in the group.
In reply to: Forums access on a per-user basisThank you.
In reply to: False message about topic in the trashSolved. I simply had to re-create the forum in which all my posts go with Post Comments as bbPress Topics. Thank you.
In reply to: Adding a line of text above/below each topicThat’s good to know. I will enquire a bit further.
In reply to: Adding a line of text above/below each topicThe target=”_blank” does not work. If it is just that, I can put it on the IT gods’ malevolence and live with it.
In reply to: Adding a line of text above/below each topicThank you! Each time I try by myself and each time I get stuck. My fat fingers do not know how to make the word “here” bold and its link open in another tab. This is something I’ve done dozens of times but it won’t work in this php coding. Thanks again, doctor.
In reply to: Adding a line of text above/below each topicSo, I did the following because I want the word “here” to hold the external link. I messed up, of course:
function add_custom_content($content) {$topic_id = bbp_get_topic_id();
$user_id = bbp_get_topic_author_id( $topic_id );if ( bbp_is_user_keymaster($user_id) ) {
$after =”<p><i>Still struggling with your website(s) speed? Click here.</i></p>”;
$content = $before . $content . $after;
}
return $content;
}
add_filter (‘bbp_get_topic_content’, ‘add_custom_content’);In reply to: Adding a line of text above/below each topicNo, that doesn’t do anything. I asked the question to the plugin author a few days ago but got no answer. One last request regarding the code you gave me earlier on: How can I insert an external link in my [TEXT]?
In reply to: Adding a line of text above/below each topicHi,
I use the Post Comments as bbPress Topics plugin, which gives by default an excerpt of the concerned post. None of the other options seem to work but none of them suit me either. Expanding on the php code you gave earlier in this thread, would it be possible to simply delete all content in the topic other than “[See the full post at: …]” and, of course, my own [TEXT]?
Thank you
In reply to: Adding a line of text above/below each topicThank you!
In reply to: Adding a line of text above/below each topicActually, I forgot something. How to apply this function only to the key master, not the participants?
In reply to: Adding a line of text above/below each topicBeautiful!