Forum Replies Created
-
In reply to: Spam/Trash links not working after upgrade to WP 3.4
That’s the way it’s supposed to work, yeah. But I double checked, and even went into /wp-admin and checked the post status of the topic.
In reply to: Spam/Trash links not working after upgrade to WP 3.4That’s the way it should work, yes. But I’m 100% sure it’s not doing that. I even checked in wp-admin and the topic remains published
In reply to: Spam/Trash links not working after upgrade to WP 3.4I’ve since switched my theme to TwentyEleven and deactivated all other plugins. The problem remains.
Any suggestions??
@johnconners – Any updates on your plugin? Page caching would be a HUGE help for large BBpress sites like mine.
In reply to: Reply redirects to first page of topicVersion 2.0.2
Even more strange, it works fine on my local install but not on my live site. They are identical in every other respect.
In reply to: MySQL Error After Forum Reply Submittted@johnjamesjacoby – Here is the error, verbatim:
WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'http://hethens.com/people/jordan/' rel='nofollow'>@jordan</a>, <a href='http://h' at line 1]
SELECT ID FROM wp_posts WHERE post_type = 'reply' AND post_status != 'trash' AND post_author = 2382 AND post_content = '<a href='http://hethens.com/people/jordan/' rel='nofollow'>@jordan</a>, <a href='http://hethens.com/people/jaygran7/' rel='nofollow'>@jaygran7</a>, hello!' AND post_parent = '60294' LIMIT 1Looks like an issue with using @replies?
In reply to: Single Reply Freshness instead of Exact Post DateAnyone else interested, place this in your functions.php file:
function bbp_get_reply_last_active_time( $reply_id ) {
$last_active = get_post_field( 'post_date', $reply_id );
$last_active = !empty( $last_active ) ? bbp_get_time_since( bbp_convert_date( $last_active ) ) . ' ago' : '';
return $last_active;
}and then call it in loop-single-reply.php
In reply to: Single Reply Freshness instead of Exact Post DateThen why is it functioning like that on BBpress.org, but not in the plugin? Can you post that template tag?
Fixed this by adding
'paged' => 1
to the queryFor example, if I’m on page 2 of a topic, that code will show me the second page of the most recent topics. It’s somehow pull parameters from the other loop on the page.
@johnjamesjacoby – (Sorry for not posting directly on the trac ticket, I can’t seem to login there)
1) The link should hopefully include the correct page and anchor link to bring them directly to the right comment
2) If the user has more than one notification and the notification menu brings them onto their activity page instead, those should also link correctly as stated above.
(Although it would be fantastic if up to 5 forum @mentions could be shown in the notification menu before grouping them into 1)
3 more tickets to go for 2.1! Thanks
In reply to: 2.1 – 'Topics Replied To' tab has no template?I’m new to the trac process with dev versions. Since this isn’t listed on the trac page, should I submit it as an issue or assume you have it covered?
In reply to: Altering pagination output in bbpress 2.0Bump
Bump
In reply to: Order topics by # of replies (popularity)I was able to do this with the following code:
<?php if ( bbp_has_topics( array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value', 'show_stickies' => false ) ) ) : ?></p>
<?php bbp_get_template_part( 'bbpress/loop', 'topics' ); ?>
<?php bbp_get_template_part( 'bbpress/pagination', 'topics' ); ?>
<?php else : ?>
<?php bbp_get_template_part( 'bbpress/feedback', 'no-topics' ); ?>
<?php endif; ?>In reply to: Altering pagination output in bbpress 2.0Alternatively, is there a way to use the WP-Page Navi plugin instead if this is not editable?
In reply to: Ajax Broken w/ JS errorsThanks for the help @will_c!
Unfortunately that didn’t work for me. Somehow I’m not even getting the above mentioned errors anymore (even before your suggestion) but AJAX is still not working.
AJAX is broken in Buddypress and BBpress and I have tried deactivating all other plugins.
In reply to: Showing user favorite topics outside of profileI’m not using multisite, but thanks for the suggestion @Trobee
And I do have a few favorites selected, FYI
In reply to: Showing user favorite topics outside of profileWhat setting would disallow me from seeing my own favorite topics?
In reply to: Ajax Broken w/ JS errorsAnyone?
Hmm so there’s no way to code this in until it’s released? I would LOVE to be able to have favorites/subscriptions in the BP profile. I need the functionality of both!
Additionally, it would be great to also have a list of ‘Mine’ discussions on the profile too.
In reply to: Ajax Broken w/ JS errorsBump
Just what I needed, thanks so much!
In reply to: Ajax Broken w/ JS errorsThat fixes the first error but I’m still getting this one:
topic.js:39Uncaught TypeError: Object #<Object> has no method ‘wpList’
I’ve tried deactivating all plugins besides BBpress, switching to the default theme and re-installing BBpress. The errors still comes up.
wplist.js is being called before topic.js so it must be something in the code…?
In reply to: Possible bug: ajaxurl for Favourites/SubscribesJQuery is called first and I’ve tried only activating BBpress and Buddypress and the error is still there.
Thanks for your help mate! This is a tough one. If you have any other suggestions, I’m all ears. Thanks again.