Search Results for 'test'
-
Search Results
-
Topic: Log In Problems
I am using wordpress theme Customizr and have downloaded bbpress.
When I go to my site I can view the created forum (it is private for members only) as I am logged in.
In order to test, I have created a new user (in users) but when I log out, and try to log in the new details it comes up with the wordpress admin panel saying wrong details. If I try to go back into the wordpress dashboard, it has logged me out from there too.
I would really appreciate all your help.
Topic: Problems aligning columns
Hi folks,
I could really use some help! I’ve installed bbpress and it’s beginning to look good, but I’m having some problems with the table alignment.
My theme is responsive but for some reason, the individual forum columns (ie freshness, topic, etc) aren’t holding their shape at all and keep running over onto the next line, making the forum look very messy on mobile.
I have access to the CSS file but can’t figure out the code I need to make sure that the columns remain ‘fixed’, regardless of the screen size/orientation. Here’s a link βΒ I would be very grateful if you could give me a hint as to what I need to change. I’m running wordpress 4.1 and the latest version of bbpress.
Thank you!
Hi there,
have seen some other posts but still having serious problems. Have the latest versions of WordPress and bbPress but users are not receiving notifications when subscribing to topics or forums. Have tried the patch in 2618 but still not working.Kind Regards
KatieKat
Hi,
I am a validator from the Romanian team. We completed the translations for BuddyPress and bbPress in Romanian language and I wanted to try a live test. When I have install the BuddyPress in the Romanian WordPress 4.1, the Update from Dashboard immediately notified me that I can install the translation for BuddyPress, and the installation of the Romanian translation went smooth. But after I install the bbPress, nothing happened π Is there an error?
Then I exported the .po and .mo files from the GlotPress project page (https://translate.wordpress.org/projects/bbpress), rename the files as bbpress-ro_RO.mo and also for .po and manually uploaded via ftp in the wp-content/languages/plugins/ folder. Now after refreshing the Dashboard screen I have the bbPress in Romanian.
But still – the description string that is displayed on the Plugin Screen “bbPress is forum software with a twist from the creators of WordPress.” is in EN. I tried to find it but it seems to be missing from the GlotPress collection for bbPress.
Can somebody fix this?Many thanks and keep up the good work!
Adi
I’ve seen this with others, and it appears to be an issue going back 5 years with bbPress. When I have bbPress installed and activated, then I go to log into the admin dashboard, I am redirected to the front of the site. If I didn’t have the admin bar active, I would have to manually type in the browser address bar the dashboard url. This has been an ongoing issue and I am experiencing it yet again. It does this even with a default WP theme active and it does it locally on my XAMPP development, as well live.
So when bbPress is active, it does this redirect to the front of the site. This happens to me every single time I try it out when testing themes. I’ve even seen this happen with no other plugins, just bbPress and WordPress.
Any official solution to this? I know there are some who posted they cannot replicate the issue, but I have found a lot of people who experience the same issue. Would this be considered a bug?
My WP version is 4.1
bbPress version 2.5.4
Demo site link: HEREMy live site location is setup with WP as a network (multisite) to demo all my themes.
Thanks in Advance.
UPDATE: Forgot to mention this happens only when I log directly into the admin and not through the forum login.
Topic: Help with Custom View
I *think* I’m going about this the right way — but I may not be, so any advice will be appreciated.
I’ve moved a long-standing forum group onto bbpress. We’re loving it, but members have asked me to make it work more like our old program. I’ve seen a lot of chatter about view-unread elsewhere. I’m using the plugin https://wordpress.org/plugins/bbpress-unread-posts/ — that hasn’t been updated in forever, but works nicely and gives us what we are used to. It creates a meta-key for each topic, each user: bbpress_unread_posts_last_visit_$user-id with the associated value being the unix timestamp.
Combined with the plugin to go to the first unread post, this works. I’ve also created buttons where the user can reset that meta-key to mark forums as read / unread.
Now I want a custom view, “Unread View”, that will look for topics where
_bbp_last_active_time > bbpress_unread_posts_last_visit_$user-idSince $user-id is dynamic, I’m thinking that I can’t just specify the view in the functions.php file and be happy.
What I’ve done:
added:
—–
// adding custom view for unread
function my_custom_views_init() {
$args = array ();
bbp_register_view( ‘unread-view’, __( ‘Unread View’ ), array( $args ), false );
}
add_action( ‘bbp_register_views’, ‘my_custom_views_init’ );
—–
to my functions.php file.created
unread-view.php based on loop-topics.php with the logic to test if
_bbp_last_active_time > bbpress_unread_posts_last_visit_$user-id
and only show the topic if it is… (I’m not sure if I have the logic right yet, or if this is even the right loop to put the test…)Added a page with the short code
[bbp-single-view id="unread-view"]But there’s clearly a link missing. I need something to tell the system that I want to use my unread-view.php instead of loop-topics.php for “unread-view” ONLY.
And I’m not sure how to do that. I’m clearly missing more than a little bit of the logic here. My programming skills are pretty basic, so any help you can give me would be appreciated.

