Search Results for 'bbpress'
-
Search Results
-
Topic: Widgets
Hi, I’d like to make a custom widget with the default bbpress forum list widget as a code starting point. Where would I locate these, and where should I place them once I make it? Should i turn it into a personal plugin so i can use it on other sites if I wish?
It’s just that the default one is meant for a side bar, and I want one for under my header on my main page.
It would be really great if pagination for threaded comments could be looked into again. I notice there are a lot of people wanting this feature.
@svetoslavd79 came up with a mostly working solution and in the comments section provided ideas on how it could be re-done to prevent url linking issues:I’m starting to think that the most elegant way to deal with all this issues surrounding pagination of replies is to create a hidden field in the reply form that saves the page number as a custom field attached to the reply. If you can accomplish that, modifying or filtering anything that needs a link to that particular reply post should be a breeze after that.
Anything else will have to involve some wild math to calculate each reply page number and will only weigh in on the execution and ultimately site speed and performance.
This is still not super simple but something to consider if you want to pursue such implementation.
Any chance of this being on the roadmap?
When I perform a search, I get duplicate search results.
One set of results have no sidebar (full page width) and immediately below that I get a duplicate set of search results with the sidebar widgets. I am using a bbpress.php file in my child theme. It appears to be using that.
Here is my bbpress.php file:
<?php /* Template Name: Page: bbpress.php */ global $data; get_header(); ?> <div class="page-wrap"> <?php get_template_part( 'framework/inc/slider' ); ?> <div id="page-body" class="page-body"> <div class="container"> <div id="page-title"> <hgroup> <h2>Fax Software</h2> <h1>Community Forums</h1> </hgroup> </div> <?php if ( function_exists('yoast_breadcrumb') ) {yoast_breadcrumb('<p id="breadcrumbs">','</p>');} ?> <?php echo do_shortcode( '[bbp-search]' ) ?> <div class="row"> <div class="span9"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>><?php the_content(); wp_link_pages(array('before' => 'Pages: ', 'next_or_number' => 'number')); ?> </article><?php if(!$data['check_disablecomments']) { comments_template(); } endwhile; endif; ?> </div> <?php get_sidebar('forums'); ?> </div> </div> </div> <?php get_footer(); ?>I do not currently have a loop-search.php file in my child theme.
We installed bbpress and it was working a couple days ago. We have a memberpress website and had isntalled bbpress and buddypress. We deactivated buddypress because it was not working at all with our site. We have two topics posted however I am the only person who can view these topics. All other users only see that there are two topics but cannot access them at all. I have it set for forums that all members automatically are assigned the “participant” role. Our forum is here: catholicstudiesacademy.com/members
It is protected for members-onlyLogged in members see the message “Oh bother! No topics were found here!”
But when I am logged in as the administrator, I see the 2 topics and replies.
I’ve been working 2 days on trying to import a bbPress 2.5 forum into an existing website. My last attempt was manually changing and relinking all the forums, topics, and replies in the WordPress Importer’s exported xml files.
Everything looks good in respect to showing correct topic, post, reply, and voice counts. What I can’t figure out is why the topics and replies don’t list on the child forum pages or on the topic pages. Those pages say at the top the correct number topics and replies (i.e. “This forum contains 10 topics and 16 replies, and was last updated …), but directly under that it says “Oh bother! No topics were found here!”
I’m guessing that I’m missing some sort of ID linking that doesn’t show on the xml export. Please, can anyone help? Would really appreciate any help. Thanks!
Hi guys,
I am hoping you can point me in the right direction with this as i am rather stuck.
essentially i installed BBPress on a WP site over a year ago, for several reasons i now need to move it to its own WP install so i moved it into a sub folder called ‘forum’ hoping to keep the links working
the end result however is all of the links to forums now have: /forum/forum/ on them, once from the fact the WP install is in a sub folder called forum, the next from bbpress
how do i stop bbpress from adding the extra forum into the URL?
the Forum Prefix in the option does not do this (you would have thought it would do given the name)
any ideas?
Topic: Ajax Replies
im trying to use this plugin, but i have some issues
https://github.com/aliso/bbpress-ajax-replies
any idea?
Topic: Can’t change forum roles
Hi,
I’m using bb press with restrict content pro on a private forum.
I have bbpress version 2.5.14 and Big Brother theme.
I can change my user forum roles in their settings to participant, but on the main screen under Forum roles it shows up that everyone is an instructor.Please advise.
website: http://www.mededexperts.com.auTopic: BBsrcipt installation
Hello Guys,
I tried to install the BBpress script on my website by didnt worked can you help me ?
Server is sending me a error message after installation
I could do it manually, but it will take lot of time to setup database again..Thanks for your help my friends
Hi
When people used the img tag, they used to be able to link to images and have them show up in my threads. The images are no longer appearing. I’ve tried turning off spam and security plugins, but it doesn’t make a difference, and I can’t find any help after a search.
Can someone please help me to get linked images back in my BBPress threads?
Peter
https://www.orderofgamers.com/forums
WP 4.9.5
BBP: 2.5.14Hi All!
I’m referring to the [bbp-lost-pass] page specifically. When a user enters their email on the ‘forgot password’ page, the reset email is sent properly BUT the page only refreshes. There is no notification letting them know that the email has been sent. I know this isn’t something malfunctioning, it’s just the way it was designed. But I’d like to redirect to a page that confirms the email has been sent. I found this topic from a while back https://bbpress.org/forums/topic/lost-password-page-not-redirecting/
but I can’t seem to find the correct action to hook into. I’ve searched the bbPress files on our ftp server and found the ‘template.php’ located here-> wp-content/plugins/bbpress/includes/users/Here is the snippet I am hopeful of:
.
.
.
/** Lost Password *************************************************************//**
* Output the required hidden fields when user lost password
*
* @since bbPress (r2815)
*
* @uses apply_filters() To allow custom redirection
* @uses bbp_redirect_to_field() Set referer
* @uses wp_nonce_field() To generate hidden nonce fields
*/
function bbp_user_lost_pass_fields() {
?><input type=”hidden” name=”user-cookie” value=”1″ />
<?php
// Allow custom lost pass redirection
$redirect_to = apply_filters( ‘bbp_user_lost_pass_redirect_to’, get_permalink() );
bbp_redirect_to_field( add_query_arg( array( ‘checkemail’ => ‘confirm’ ), $redirect_to ) );// Prevent intention hi-jacking of lost pass form
wp_nonce_field( ‘bbp-user-lost-pass’ );
}
.
.
.I am new to php so I am now quite sure on how to implement the redirect filter in the appropriate place. Should I be trying to hook into an action? Or apply a filter?
Thanks in advance!
-JaimeTopic: Forum font size
Latest WP and bbPress
The forum listing shows up fine, but with a very small font that I find hard to read. I think I’ve tried every possible font setting in my theme, but none seem to affect the font for fora. The font is also small in the standard themes.
Any tips?
This is all to complicated for my simple mind.
Need someone- to install and intergrate bbpress into my WP forum.
Is it possible to totally intergrate bbpress into the forum, so that the Forums show up in the main window of the template the same as the topics from WP?
Or do I need to create a totally new template to run under bbpress that matches template for WP?
address web : https://safaryar.net/Participant-level users can create new topics, but after creation the participant is directed to a 404 page. Higher-level users can view the created topic, but not the participant that created the topic.
Site is running Twentyseventeen theme, and only bbPress and Buddypress plugins, plus the bbpress wp4fix plugins, are installed.
This site is a development site being used to diagnose and hopefully fix other forum visibility issues detailed in this post: https://bbpress.org/forums/topic/recurring-no-topics-found-message/
Any help is appreciated, URL and login can be provided on request.
Topic: Paypal plugin
Hallo my WordPress version is 4.9.6, bbPress version 2.5.14, i dont have a site im now install WP and bbPress on my localhost computer and im learning, i please of advice.
Im new in wordpress i want use bbpress commercially. I am looking for a solution which after payment of paypal, credit card, debit cart, automatically assigned to the user points that he could use for example his topic (in bbPress) would be sticked on top of the list etc. At the same time the plugin would protect against chargeback, etc.
I find the plugin “PayPal Plus for WooCommerce” but when i scan it with virustotal.com, by the way, see for yourself: https://www.virustotal.com/#/file/0a9bac644a1fd7c2bab5c56c067a9fef627bd84c59d5c36933aa4528024e7054/detection
Please help, give me some advice.
ThanksTopic: How delete all IP Addresses?
How can i delete all IP addresses that stored in the bbpress Data?