Forum Replies Created
-
In reply to: Forcing to post first before forum can be read ?
Hi @stefaanc,
In basic bbPress you won’t find this, but maybe with a combination of plugins or some short coding, you should be able to achieve this.
Just some thoughts, do you see a different forum per question, then topics would be what students answer and then eventually replies could be give to the specific topic (answers) ?
Or would your questions be topics in one or the other forum and then the answers would be replies ?In reply to: Custom Roles not assignableIn reply to: No toolbar available@adiek84,
If you don’t know where to put the above code, you could also activate it in my ‘bbP Toolkit’ plugin. But if this is the only function you need, then copy the above in your child theme’s functions.phpIn reply to: BBpress forum error?Great ! Thanks for the reply.
In reply to: Last reply link is broken – what to do?It’s a 2nd beta so pretty stable (I’m using it on smaller forums already)… but it’s a beta of course.
In reply to: Change color text ‘Reply to’Hi @myrax
Should be something like this:
#bbpress-forums fieldset.bbp-form legend { background-color: #121212; color: #DDDDDD; }
In reply to: Last reply link is broken – what to do?Hi @nesiditsa
Nice one ! I didn’t find it 🙂
The above mentioned fix has been added to bbPress 2.6. We are at the beta 2 (that you could download from https://bbpress.org/download/ ) so we are close to releasing the real 2.6 . If you have a test environment please switch to 2.6 beta already and see that it works !
In reply to: BBpress forum error?One extra info : If you are running PHP 7.x and you have 2.6 alpha, please install 2.6 beta 2 from https://bbpress.org/download/ and let me know if it’s fixed.
In reply to: BBpress forum error?Please provide your WP version, bbPress version and other info e.g. :
WP version 4.7.3
bbPress version 2.6-beta-6251
Theme Twenty Seventeen 1.1And if you can get to this :
PHP version 5.6.28
DB info DB charset: utf8 / DB collation: utf8_general_ciThanks.
@5lions, your link has disappeared :
No Results Found
The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.In reply to: Plugin to split subscription emailsYou created/used filters ? Or you just rewrote the functions ?
If you want to share your work, please do.Pascal.
In reply to: Add a subscribe to all forum topics buttonLeave a message on the support forum of my plugin and let’s see…
In reply to: Add a subscribe to all forum topics buttonSorry.
There is no specific function for that. I just wanted to point you to my code so you get the necessary bbp functions that you can call. There is nothing already created for you there, I just wanted to give you some examples about how to handle subscriptions.In reply to: Add a subscribe to all forum topics buttonsubscriptions.php
In reply to: Plugin to split subscription emailsHi @tananaev ,
It took me some time to look around, but maybe https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/ can help you ?
In reply to: Add a subscribe to all forum topics buttonWith my bbP Toolkit plugin an admin or moderator could force that for a specific user.
If you want this automated for an existing forum and the existing topics, you would find the necessary code in my plugin.
But probably you want to somewhere keep a record of the users that clicked this button so that for every new topic, that user also gets subscribed automatically.Thinking of it, it might be easier to create an extra capability/role, apply them to users that want to have a ‘subscribe-all’ and then on every new topic creation check that and add the subscriptions…
Just some ideas, no codes, but I hope it gives you a start.
In reply to: LanguageHi,
I see you downloaded from the 2.4.x branch. You have a bbPress 2.4 installation ?My idea was: switch permalinks, save, get back to previous permalinks. But I think you have done that.
Did you try some of the recalculations in the repair section ?In reply to: Links in New Reply notifications not activeThat a standard feature of WordPress: Subscriptions.
If somebody is subscribed to a forum, that person will receive an email upon new topic creation.
If somebody is subscribed to a topic, that person will receive an email upon new reply creation.When you are in a forum, somewhere on top it should say ‘subscribe’. Clicking there should send you emails when new topics are created.
If you, as admin (keymaster) or moderator wants to deal with (manage) subscriptions, have a look at my bbP Toolkit plugin that has ways of activating/deactivating for other users.
In reply to: Are Forum Page/Slug Assignments Necessary?So it’s display only ? But the input of the topics and replies is happening somewhere in a ‘normal’ bbPress forum, right ?
I think you need to create a theme that only displays what you need. It will be easier then just displaying everything with the shortcodes.
In reply to: bbp_reply_admin_links$args is only the 3rd argument of the bbp_get_reply_admin_links function !
So if you want to deal with the args, it should be:function hw_get_reply_admin_links ($retval, $r, $args) { $args = array ( 'before' => '<div class="list">', 'after' => '</div>', ); return $retval; } add_filter ('bbp_get_reply_admin_links', 'hw_get_reply_admin_links', 10, 3 );
In reply to: how to replace forum text from headerHi,
It’s a bit difficult to understand where this is coming from (it might be part of your theme), so if the site is publically availalble, a link to it might be nice.It might be that following point 3 of this codex page will help you: https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/
In reply to: Migration from xenForoDid you try importing in the latest bbPress 2.6-beta 2 ?
In reply to: Links in New Reply notifications not activeHi,
If you have only installed bbPress, links should be clickable… Did you add any other plugins on your installation ?In reply to: bbPress with TinyMCE, TinyMCE breaks on nested replyHi @expectancy,
I was unable to reproduce this error. Could you switch to a standard theme like twenty seventeen and deactivate all plugins and try again ?
If you think bbP Toolkit would need a change, then please use the dedicated forum for that plugin to report it.