Search Results for 'bbpress'
-
Search Results
-
hello everyone I have a problem with users of the forum.
My bbpress forum is currently limited to registered users.
These are days that I try to find a way to solve this problem without coming to terms with it.
currently the forum that I created on wordpress with bbpress is limited to registered users, I would like the forum to be free and that unregistered users could read the forum, discussions and replies, if they wanted to participate in the discussions or create new ones at that point would need registration.
how can I do?hello everyone I have a problem
in the forum I created with bbpress
all of a sudden I only see the forum home page and if I click on a topic I see the screen all white without the contents
what happens?Topic: pagination is not display!?
There are 13 comments on my page, and there are 5 display settings.
Web:http://urx2.nu/LPiR
Img:http://folio.ink/jzbNpwBut pagination is not display!!
This is the HTML:
<div class="bbp-pagination"> <div class="bbp-pagination-count"> </div> <div class="bbp-pagination-links"> </div> </div>I just installed an WordPress, and only BBPress plugin activated.
Why??
Topic: bbp_get_time_since issue
Hi,
The function
bbp_get_time_sinceinincludes/common/formatting.phpalways returns “right now”.bbPress Version: 2.6 release candidate 6
I don’t know exactly when or how.
But bbpress delete my write automatically.I guess(think), if I write as long time, then bbpress delete my write topic.
ㄴ That is not going to spam. It just like erase…Even if I setting bbpress like this “https://prnt.sc/kqq9tt“. It does not matter.
How can I fix…
Anyone can give me advice?Thank you.
Topic: Bbpress Sidebar Width
Hi,
Can i change forum sidebar width?
For example; my homepage sidebar width %30
forum page sidebar width %25.Topic: cPanel Dangers?
I’ve hired someone from Upwork to fix my bbPress implementation… He says he needs to use my cPanel. As a non-developer, this makes me nervous. SHOULD I BE WORRIED? SHOULD I ALLOW THIS?
If so, what precautions should I take?
Thank you!!
Topic: User login without admin bar
I’m installing bbPress on a site using a lightly tweaked twenty sixteen theme. Testing how it would work for a normal user, I opened an incognito window, registered using a new username and password. When I login with these credentials, I get an admin bar across the top of the page with the “Howdy” message on the right and access to a very limited admin panel (because my status is “Subscriber, Participant”). How do I prevent this admin bar from showing when ordinary subscribers login?
Topic: BBPress Import fail
Hi all,
I have created a backup “export.xml” of my old wordpress site and have gone to imported it onto my new site (the rebuild). When I exported I exported all of my content (including bbpress options).
Nothing relating to bbpress is importing. All my pages, posts, users, etc.. import, but not bbpress.
Any ideas why this might be happening?
Cheers,
Chris.Hi All,
So, I’m trying to build site using Asphostportal hosting services. I actually have something pretty nice. One of the things I wanted to do was add a forum. Talking with the Asphostportal tech support people, they suggested getting wordpress (hosted through them) and then downloading the bbPress plugin, and easy-as-pie – NOW YOU HAVE A MESSAGE BOARD!
But that’s where they left me.
I’ve been trying for hours to figure out how you go from the dashboard, which is basically a blogger UI, to turning it into a message board. For years, I was an admin for a little board we all ran, but it was a YaBB board and everything I had to do, I did from the admin panel.
Is there a simple way to make this plugin look and behave like a message board?
Please help this poor little sheep.
Hi!
I want to hide all the columns (Posts, Topics, Voices, Freshness) except the Forum and Topic.
Everything is working fine except the column size of Forum column is not changing. Here is the css:/* To hide VOICE, REPLY, POSTS and FRESHNESS columns in bbPress */ li.bbp-forum-reply-count, li.bbp-forum-topic-count, li.bbp-forum-freshness { display: none !important; } li.bbp-topic-voice-count, li.bbp-topic-reply-count, li.bbp-topic-freshness { display: none !important; } li.bbp-forum-info, li.bbp-topic-title { float: left; text-align: left; width: 100%; } /* End */Please help.
Topic: Forum Topic Loop
Hello there,
Firstly thank you for viewing this thread, really appreciate.
I am trying to create a topic loop to display in my in development theme. I have created a template part in my
theme-directory/bbpress/omna-forumthreadssee below:<?php /** * Single Thread * * @package bbPress * @subpackage Theme */ $threadURL = bbp_topic_permalink(); $threadTitle = bbp_topic_title(); $threadTIme = bbp_topic_post_date(); ///////////////// Thread Author Avatar URL //////////////////////// $user_id = bbp_get_user_id( $user_id ); $authorAvatarURL = get_avatar_url( $user_id, 300 ); /////////////////////////////////////////////////////////////////// $threadVoiceCount = bbp_topic_voice_count(); ?> <div class="swiper-slide-item"> <div class="icon-author" style="background-image: url('<?php echo $authorAvatarURL; ?>'); background-image: -webkit-image-set(url('<?php echo $authorAvatarURL; ?>') 1x, url('<?php echo $authorAvatarURL; ?>') 2x);"> </div><<?php echo $threadURL; ?>"><?php echo $threadTitle; ?></a></h2> <time class="data" datetime="<?php echo $threadTIme; ?>"><?php echo $threadTIme; ?></time> <span class="views"><i class="fa fa-comment-alt"></i><?php echo $threadVoiceCount; ?></span> </div> </div>And i believe this should work, But currently i have issues with the loop that should display it by driving the content from the template part. Here is my loops:
<div class="swiper-wrapper"> <div class="swiper-slide"> <div class="swiper-slide-container"> <?php if ( bbp_has_topics() ): while ( bbp_topics() ) : bbp_the_topic(); bbp_get_template_part( 'bbpress/omna', 'forumthreads' ) endwhile; endif; ?> </div> </div> </div>Now i get a pass error:
Parse error: syntax error, unexpected ‘endwhile’ (T_ENDWHILE) in C:\wamp\www\omna\wp-content\themes\omna\page-home.php on line 143
I have also tried the curly brace {} type of IF & WHILE expressions, still a parse error..
Please Help.