Forum Replies Created
-
In reply to: Replies not indenting
I’m just a bbpress user who helps out here, so not in a position to change it 🙂
In reply to: Subscription don’t workthanks for that, and yes I’ll look at the code. I think it does nothing unless you start to fill it in, but an activation tick box might be a better solution.
Thanks for letting me know and for posting your solution.
so maybe new to 2.6.5? I’ll take a look when I get a moment.
In reply to: Replies not indentingthat just shows a topic and the initial reply. Threaded/indented replies don’t start until you reply to a specific reply – that’s how you know which belong to which
In reply to: Setup for saving messagesgreat – glad you are fixed and thanks for posting back the answer.
In reply to: Replies not indentingok, so can I have a link to an example please
In reply to: 2.6 doesn’t recognise existing WP forum rolesyour host provider will be able to tell you
In reply to: Setup for saving messagesok, try
once activated go to
dashboard>settings>bbp style pack>Topic/Reply Form
and enable the visual editor
That may help
In reply to: Setup for saving messagesare you just using bbpress default editor, or have you added the WordPress editor?
In reply to: Sending topics closed to participants when they postsorry beyond free help
In reply to: [User permissions][Forum permissions] Differencewhere are you seeing this
In reply to: Breadcrumbs on Search Results Screencome back of you need further help
In reply to: Sending topics closed to participants when they postIn reply to: Subscription don’t workemail is the most complicated and hardest to debug !
It might be that as your forum becomes more popular, that bbpress method of bulk sending emails is getting them marked as spam – many email companies hate emails with multiple cc’s.
try
In reply to: Breadcrumbs on Search Results Screenin both your cases (main search and empty search) then yes you will have a problem.
main search can be excluded by looping round the search results and excluding the forum if the search results are from more than one forum.
Global wp_query is available, and lists the query that was executed, so in there you would find the
‘key’ => ‘_bbp_forum_id’,
‘value’ => $forum_id,
‘compare’ => ‘=’, ,part of the query, so you could use that with some nifty code to extract the forum number, but I’ll leave you to work out how to do that !!
In reply to: Function passes a null parametergreat – glad you are fixed
In reply to: Breadcrumbs on Search Results Screenthat was an interesting challenge, as the forum ID is not known when the breadcrumbs start to show, so I had to look up the forum_id from the first result.
but this should work, just add it to your functions file
add_filter ('bbp_breadcrumbs' , 'rew_breadcrumb_search' ) ; function rew_breadcrumb_search ($crumbs) { //create a new array $new_crumbs = array() ; //find the forum from the first item in results if ( bbp_has_search_results()) { while ( bbp_search_results() ) : bbp_the_search_result(); $type = get_post_type() ; if ($type == 'topic' ) $forum_id = bbp_get_topic_forum_id() ; if ($type == 'reply' ) $forum_id = bbp_get_reply_forum_id() ; if (!empty ($forum_id)) break ; endwhile ; } //cycle through the crumbs until we find search foreach ($crumbs as $crumb=>$data) { if (strpos($data, 'search') !== false) { //If the forum ID exits, add the breadcrumb if( $forum_id && is_numeric( $forum_id ) ){ $new_crumbs[] = '<a href="' . esc_url( bbp_get_forum_permalink( $forum_id ) ) . '" class="bbp-breadcrumb-forum">' . bbp_get_forum_title($forum_id ) . '</a>'; } } $new_crumbs[] = $data ; } return $new_crumbs ; }
In reply to: Subforum list spacing issuegreat – glad you are fixed
In reply to: New Topic Not Showingit went into spam, I’ve unspammed it, and I’ll delete this topic
link to your site and an example please
In reply to: Remove borders in templatebrowser refresh needed. If you’re looking on a phone, may take a couple of days as phones are crap at refreshing css
In reply to: Remove borders in templatetry adding this to your custom css
div.bbp-forum-header, div.bbp-reply-header, div.bbp-topic-header, li.bbp-body div.hentry { padding: 0px !important; } .oct-main-content { padding: 0px !important; }
In reply to: Remove borders in templatelink to a forum page please
In reply to: Replies not indentingand just tried twentytwenty and it works
In reply to: Replies not indentingWordPress 5.4.1
bbpress 2.6.5
bbp style pack 4.5.3
twentyten theme