Forum Replies Created
-
In reply to: check if on forums directory
Yes, thanks.
In reply to: check if on forums directoryThanks but afaik this is what tells you if you are on the forums directory:
bbp_is_forum_archive()
Thx @danbp
Perhaps somebody can close this topic.In reply to: reply email notifications are not being sentBluehost does not implement such a plugin.
afaik, box557.bluehost.com is the server slice the acct is assigned to.
I can generate emails and set $to & $from and those fields are not changed on delivery.
wp_mail( $to, $from… )
In reply to: reply email notifications are not being sentSite and home urls are http://www.***.com
Last test used trunk (as of 9AM PST ) and the 2618.4.diff.
In reply to: reply email notifications are not being sentStephen – tested 2618, still no emails.
We going to stick with 2.5.1 for now.In reply to: reply email notifications are not being sentWordPress 3.9.1
BP 2.0.1Sorry, but it’s a dev site created by the client so I can’t publish the url.
It’s on a shared account at Bluehost.The ‘from’ on received emails is [account name]@box557.bluehost.com
The site_url and home_url are the same and use ‘www’.
I can test bbpress patches.
In reply to: reply email notifications are not being sentfyi – using bbPress 2.4.1 now and emails are being sent – so it’s not the host.
In reply to: reply email notifications are not being sentI’ve applied 2618.3.diff per ticket 2618 and still no emails.
In reply to: Edit topic reply, changes post orderTicket created:
https://bbpress.trac.wordpress.org/ticket/2540See: https://bbpress.trac.wordpress.org/ticket/2397
Mod: I edited the link to point the existing Trac ticket we have.
In reply to: Edit topic reply, changes post orderSame issue here.
The bug is related somehow to the ‘reply threading’ option.
It makes that option un-usable because any edit to a reply pushes it to the bottom and destroys the threading. Any threaded replies become ‘flat’.
WP 3.8
BP 1.8.1
BB 2.5.1Editing on the front end.
Another issue:
If you turn off threaded replies, the ‘reply’ link still appears on the right side for each reply. If you click it, it reloads the whole page!
If you turn off threaded replies, the ‘reply’ link should be removed.
In reply to: filter topics by post_meta valueThis seems to work – there may be a better way…
In an over-ride of content-single-forum.php, do something like this:
if ( // some condition ) { $my_r['meta_query'] = array( array( 'key' => 'my_key', 'value' => 'my_value', 'compare' => '=', ) ); } else $my_r = '';
Then change bbp_has_topics() to bbp_has_topics( $my_r )
In reply to: filter topics by post_meta valueIt seems that content-single-forum.php is the template to over-ride.
So do I have to pass in WP_Query meta_query args to bbp_has_topics() ?
I’d like to only gather the appropriate topics, so using the supplied apply_filters
apply_filters( 'bbp_has_topics', $bbp->topic_query->have_posts(), $bbp->topic_query );
seems inefficient.Or is there an easier way?
In reply to: Reply Threading not working?Thanks much for the pointer re genesis extend plugin.
Will give it a whirl.Meanwhile, relying on the good ole bbpress-threaded-replies plugin.
In reply to: Reply Threading not working?Yes, threading works with the 20-x themes.
Was hoping it was a known Genesis issue.In reply to: Reply Threading not working?Same here.
Using a Genesis child theme.
Will see if a bug report already existing on trac.In reply to: BuddyPress1.6 beta – bbpress forums setupfyi – BuddyPress has Codex page specifically for setting up Group and Sitewide Forums
https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/