Search Results for 'bbpress'
-
Search Results
-
Hello,
I’ve built a Document Management System with WP and recently I’ve installed bbPress. Since then the insert link pop-up when editing posts show no search results. Even if search text is left empty, no result posts are listed. Only when logged in as an Admin, it works properly.
When I deactivate bbPress the pop-up contains search results for non-Admin users as well.
Some details:
– WP 3.9.1 on Genesis Framework
– bbPress 2.5.3 and Genesis Extend 1.0.2
– Press Permit Core / PP Collaborative Editing Pack / PP Compatibility Pack
– about 29 active plugins in totalThe site is completely private, so a link won’t help.
Best regards,
Roland BoumanTopic: Site wide advanced search?
I am looking for a site wide advanced search plugin so I can have 1 search widget that will search both bbPress and wordpress and have advanced settings if possible.
Thanks for your time.
Hi,
I would like to hook in so any new user is automatically subscribed to a forum. I know the user ID and forum ID, but I do not know what function I should call to subscribe that user to the forum. Thanks for the help!bbPress 2.5.3
– Nathan
Topic: Wierd CSS – please advise
Hi, I am using the following code to hide my menu/navbar and search form from my site.
‘/* Remove nav bar and search form */
.page #nav-bar {
display: none;
}.page #s {
display: none;
}’It seems to work wonders on all pages except BBPress pages.
Now when I set my permalinks to “Default” the navbar and search form are removed on bbpress pages, but when I have them to anything else, the navbar shows up again (but only on bbpress pages).
Does anyone have an explanation for this?
Or can someone point me in the direction of how to remove it without having to have “Default” permalinks set (which I can’t due to buddypress)bbpress topics have ‘you need to be logged in to post reply’ at the bottom of the topic, but it doesn’t give any option to login. I do I offer login at in forums or topics so readers and login to post replies?
I have a forum running WP Symposium and WordPress, all current versions, that I want to convert to bbPress. Won’t elaborate on reasons unless deemed to do so, LOL.
I have first started with a converter of my own, which was creating custom post types for forums, topics, and replies. Unfortunately, counters in bbPress weren’t set, so the frontend pages were incorrect, replies were not chained one after the other in topics, etc.
While digging these issues, I found out that bbPress has its own converter that works using modules. So I started over by creating a module, based on the existnig ones and URLs given in this forum, and tried to make it work for forums, first. But, they simply won’t convert, whatever I try I get ‘no forums to convert’.
While I have a relatively good knowledge of WP Symposium database tables, via custom developments etc., I’m at a loss on bbPress side. Hopefully someone can catch my call so we work together on adding WPS to the list of importable plateforms for bbPress…?
Thanks a lot,
Antoineim trying to put buddypress x-profile fields in bbpress on loop-single-reply.php after the author role and avatar
I have created one called Location
my function to display it is
<div class="bbp-usr-location"><?php if ( bbp_is_topic_anonymous() ) { echo "<br>Guest Post"; } elseif ( bbp_is_reply_anonymous() ) { echo "<br>Guest Post"; } else { $user_location = xprofile_get_field_data( 'Location', ( bbp_get_reply_author_id ( bbp_get_reply_id() ) ) ); echo 'Location: ' . $user_location; } ?></div>I just want to not display it if its not filled in on buddypress
Any Help?
Hello All !
I need to list the last 8 topics in this widgets, and have a link to the next page of 8 topics, and so on.It would be like a pagination for every 8 topics.
I think the file is widgets.php in lines :
case 'newness' :
default :
$topics_query = array(
'post_type' => bbp_get_topic_post_type(),
'post_parent' => $settings['parent_forum'],
'posts_per_page' => (int) $settings['max_shown'],
'post_status' => array( bbp_get_public_status_id(), bbp_get_closed_status_id() ),
'ignore_sticky_posts' => true,
'no_found_rows' => true,
'order' => 'DESC'
);
I know that ‘posts_per_page’ show the last topics, in my case 8, but i dont know how to access to 8 before.
Any help or idea please?
Hi, I am using the latest versions of both WP and BBPress.
My problems are that when I try to add stuff to my style.css, my BBPress pages just don’t seem to follow them…
Here is an example:
>> Remove menu/nav bar and search form from all pages (style.css)/* Remove nav bar and search form */ .page #nav-bar { display: none; } .page #s { display: none; }The code works on all other pages (BuddyPress ones included), just not any BBPress pages..
Does anyone have any ideas as to why?I am no coder or expert so this has totally thrown me lol.