Search Results for ' . default . '
-
Search Results
-
Hi,
Can you help me figure out how to add a Register button beside the login button? I’m not talking about a rightside bar widget.
I’m talking about the default view when someone tries to view a forum and is not logged in.
Thanks
Hi,
I’m trying to add some detail to search results associated with replies to topics. By default, it would seem that if a search finds a hit in a particular topic post, it includes the name of the topic and the relevant forum in the header for the particular search result:
.jpg)
In contrast, a hit on a reply to a particular topic does not include any topic or forum information:.jpg)
I thought I might be able to solve my problem by modifying the loop-search-reply.php template to include what looked like it might be the relevant code from the loop-search-topic.php template:
<div class="bbp-topic-title-meta"> <?php if ( function_exists( 'bbp_is_forum_group_forum' ) && bbp_is_forum_group_forum( bbp_get_topic_forum_id() ) ) : ?> <?php esc_html_e( 'in group forum ', 'bbpress' ); ?> <?php else : ?> <?php esc_html_e( 'in forum ', 'bbpress' ); ?> <?php endif; ?> <a>"><?php bbp_forum_title( bbp_get_topic_forum_id() ); ?></a> </div><!-- .bbp-topic-title-meta --> <?php do_action( 'bbp_theme_after_topic_title' ); ?>but it seems that was a little naive of me. This block of code certainly includes what could be the required information:
but what I thought would be inserted as the forum name turns out to be the topic name.Looking at the above code, I can see why this might be—the relevant text, ‘bbpress’, in the code block above appears to be just some placeholder text, and is the same placeholder text used to reference the topic name. I had thought that the text replacement might be a little more context sensitive than it appears to be.
So my question is, can anyone tell me how that text (‘bbpress’ in the above code segment, which is taken directly from the default loop-search-topic.php template) gets replaced, or more specifically I guess, can anyone tell me where to inject a function or the like to set this or some other piece of placeholder text (I appreciate that it may need to be different to the placeholder text being used for the topic name) to the relevant forum name?
Thanks
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
Forumsand 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.phpfile, 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)Topic: first reply sticky
what is the code to make the first reply of the topic as a sticky reply by default ?
i am trying to arrange the replies in descending order and the topic content is not showing on the top of the replies.
Question 2: Is it possible to show topic content under topic title, not on the replies? This will give me more options to arrange replies according to my requirement. [while i am using
<?php bbp_topic_content(); ?>under topic title, the topic content is displaying in replies also]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.
Hi there,
When we receive notifications of topic replies. The Date Received field usually shows the time that has passed since the reply was posted. However, the text “Sometime Ago” is showing instead. This is happening for all bbPress notifications.
It still occurs when we deactivate all plugins other than Buddypress and bbPress and use the default themes.
Can anyone give any advice to fix this?