Forum Replies Created
-
In reply to: email notification to “noreply”
yes
In reply to: email notification to “noreply”by default bbpress send one email to the noreply address and bcc’s in the subscibers, so only one email sent.
code to change
add_filter ('bbp_get_do_not_reply_address', 'rew_no_reply') ; function rew_no_reply ($no_reply) { $no_reply = abc@def.com ; return $no_reply ; }
You’d think the bbpress coders would have created setting for this by now
the bbpress coders are busy people who can code what they wish to. Not up to us to criticise free software
In reply to: Possible to setup “Master Forums”?too longer a list for free help from me I’m afraid, but you will probably need my private groups plugin
briefly – for master think category, then forums as ‘sub forums’ , threads (nested) are in the bbpress plugin, email per forum post – yes the rest is a mixture of easily doable and a some custom work.
contact me via
http://www.rewweb.co.uk/contact-me/ if you want further help
In reply to: email notification to “noreply”bbpress sends an email to the noreply address and bcc’s in the intended recipients.
2 solutions
1. my style pack plugin lets you amend the ‘to’ address (see email subscriptions tab), or you can do this with code, and amend it to a real address on your website.
2.switch to individual emails – this plugin does that https://wordpress.org/plugins/asyncronous-bbpress-subscriptionsIn reply to: All Forums not showingput this in your functions file, or code snippets
//Number of forums per page
add_filter (‘bbp_before_has_forums_parse_args’, ‘rew_number_of_forums’) ;#function rew_number_of_forums ($args) {
$args[‘posts_per_page’] = 100 ;
return $args ;
}In reply to: All Forums not showingforums per page uses one of these settings
In reply to: All Forums not showingdashboard>settings>forums>topics and replies per page – forums uses one of these, can’t remember which
In reply to: bbpress moderation – word blocking or flaggingbbpress uses the wordpress moderation and blacklists
dashboard>settings>discussion
In reply to: Certain User Cannot Create Topic or Reply to Topicthis crops up occasionally and has proved difficult to fault find.
I’ve just written a small plugin that will check what is set in the blacklist, but also let you skip that check.
can you give it a try, and let me know if it helps
1. go to
and download and save, and make a note of where it is saved.
2. Then go to dashboard>plugins>add new> upload and upload the plugin you saved in 1. above
3. then activate
4. go to dashboard>tools>bbp blacklist checker and it will confirm whether data is held, and let you skip the check
In reply to: increase font sizeor install
In reply to: increase font sizeas per op
What I did,
1. installed Simple Custom CSS plugin – all ok
2. insert the below code. and changed the font-size: 1.1em; to 1.6emIn reply to: Custom Breadcrumbs (what URL to use for forum)great – glad you are fixed
In reply to: Help with installationIn reply to: Custom Breadcrumbs (what URL to use for forum)I’d suggest you do this as follows:
there is a ‘hook’ that you show above called ‘<?php do_action( ‘bbp_template_before_single_topic’ ); ?>’
This tells bbpress to do any action that is added at that point.
so adding a hook will mean that the function is called at that point.
The following code should go in your child theme functions file, or use the code snippets plugin
add_action ( 'bbp_template_before_single_topic' , 'rew_back' ); function rew_back () { $text = 'click to go back' ; if (bbp_get_topic_forum_id() == '25') $href = home_url( '/forum/domestics/' ) ; if (bbp_get_topic_forum_id() == '33') $href = home_url( '/forum/commercial/' ) ; //where to go if page not there else $href = home_url( '/login/' ) ; echo '<a class="button" href ="'.$href.'">'.$text.'</a>' ; }
so each forum will need a line.
In reply to: How to let user publish the post right away?you must have an additional plugin that is moderating posts, bbpress just publishes
In reply to: Topic Viewhey great – glad you’re fixed, and thanks for posting your solution to help others
In reply to: Topic Viewthe problem is that modern themes ignore what wordpress expects and do all sorts of clever stuff.
yes copy page.php and rename it to bbpress.php
then post a copy of the file here, and I’ll try and help further
so what is the post publication schedule ? wordpress delayed publishing or a plugin?
is this related to bbpress ?
In reply to: Topic ViewIn reply to: notification description not showingok, not sure what to suggest next, as I’m not a buddypress expert.
In reply to: notification description not showingactually try both, making it lower means it runs first which might also be the answer !!
In reply to: notification description not showing20 – just a stab at a solution
In reply to: notification description not showingI suspect it is to do with a conflict in this file
bbpress 2.5.14\includes\extend\buddypress\notifications.php
which hooks to the same filter. Maybe up your priority from 10 to get yours to run later ?
In reply to: admin menu doesn’t show on topic pageok, not something I’ve seen, as can only suggest that you do the basic fault finding process ie
It could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back