Search Results for '"wordpress"'
-
Search Results
-
Topic: Subscription don’t work
Hello,
I have the latest versions of WordPress, bbPress and bbp style pack
Users no longer receive email when they subscribe to a forum or topic.
The email is sent to the administration email but not to subscribers.
It’s not a mailbox problem. When there is a quote, it works.
It is not related to bbPress 2.6.5
Does anyone else have the same concern, is there a setting that I missed?
Thank you for helping me and sorry for my rough English.
I have a problem with the way breadcrumbs are being displayed on my search results screen.
First of all, I have the following (amongst other things) in my functions.php file:
/** Just a simple breadcrumb trail, but, importantly, don't double up when we're at the root **/ function mycustom_breadcrumb_options() { // Home - default = true $args['include_home'] = false; // Don't need breadcrumbs if we're at the root if ( apply_filters( 'bbp_no_breadcrumb', is_front_page() ) ) { // Forum root - default = true $args['include_root'] = false; // Current - default = true $args['include_current'] = false; } return $args; } add_filter('bbp_before_get_breadcrumb_parse_args', 'mycustom_breadcrumb_options' ); /** Search only the specified forum **/ function my_bbp_filter_search_results( $r ){ //Get the submitted forum ID $forum_id = sanitize_title_for_query( $_GET['bbp_search_forum_id'] ); //If the forum ID exits, filter the query if( $forum_id && is_numeric( $forum_id ) ){ $r['meta_query'] = array( array( 'key' => '_bbp_forum_id', 'value' => $forum_id, 'compare' => '=', ) ); } return $r; } add_filter( 'bbp_after_has_search_results_parse_args' , 'my_bbp_filter_search_results' );
I have a search box on the forum home page and on the index page for each individual forum. For general navigation around my forum the breadcrumbs are presented as one might expect and search results are confined to those relevant to the current forum (or all forums from the home page).
The breadcrumbs on the Forum ‘home page’ show simply as
Forums
and on individual forum index pages asForums > ForumName
, where ‘ForumName’ is the name of the current forum, etc. A search request from the Forum home page returns results as expected, with the breadcrumbs displayed asForums > Search > Search Results for 'search string'
. However, while a search from one of the individual forum index pages returns the refined search results as expected, the breadcrumbs are always displayed asForums > Search > Search Results for 'search string'
, they don’t include the name of the forum that has been searched (i.e.Forums > ForumName > Search > Search Results for 'search string'
.I think I can see that the search is actually being applied to all forums, then refined by the relevant function in the
functions.php
file, so I think I can see why I might have to do a little extra work to get the relevant forum name displayed in the breadcrumb, but can anyone suggest how I might do this? It would seem that I should be able to add a little more code to mymycustom_breadcrumb_options()
function, but what exactly…?Thanks for any assistance anyone can offer.
(WordPress 5.4.1, bbPress 2.6.5, website: digitalconcepts.net.au/forum – Please note, this part of the website is ‘hidden’ from the home page, you need to navigate there via the above direct URL)I am seeing this error in the posts when posting / updating a post:
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘publish_topics’ not found or invalid function name in …/wp-includes/class-wp-hook.php on line 287
Am using WordPress 5.4.1, Buddypress 6.0.0, bbPress 2.6.5, and PHP 7.1.33 .
Topic: Replies not indenting
I have posted this before, but I still can’t get this to work. I have threaded replies enabled, but my replies are not indenting. To determine if it was an issue with my theme, I created a brand new WordPress test site and tried all of the included test themes and indenting does not work on any of them. The only plugins I have are bbpress and the bbpress style pack. What am I missing?
Thanks!
Topic: where is the board
im running xammp and installed wordpress as a module.
i installed the bbpress
but isnt in /wordpress/bbpress or /bbpress
where it is?All,
I’m new to wordpress/bbpress, I’ve set my forum page to full-width… topics (list) are being shown as full-width. When I go into a specific topic, it’s not full-width. I have to manually change the topic attribute to full-width for each topic. It seems like when a topic is created, topic attribute is being defaulted to (default template) which is not full-width. Is there a way when a topic gets created, full-width template is used as default.Any help would be greatly appreciated.