Search Results for 'bbpress'
-
Search Results
-
https://github.com/aliso/bbpress-ajax-replies
just wondering if anyone else tried it
if you end up trying this plugin out tell me if it works on your site.
I dont know if it works or not, or its just my theme or something
when i post a new reply i dont see it posting with ajax just normally
bbpress 2.5.4
buddypress 2.0.1
WordPress 3.9.1Logged in members are not getting reply email notifications.
Group forums are not being used.Buddypress Activity mentions emails are being sent.
I can use wp_mail to send mails.So it’s just bbpress that isn’t generating emails… any suggestions?
I have read the following explanation on using filters, and have become somewhat proficient on this. http://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-5/
I am having an issue, to which I believe there is probably a simple answer. I want to replace the word “Reply” with “Review This Book” in the admin links. Easy enough. But when I do that, there is no longer a link; I want to maintain the same link.
According to the tutorial I have been using (above link), I am supposed to use a function like this:
function jc_return_review( $args = array() ) { $args['reply_text'] = 'Review This Book'; return $args; }Then I implement the following:
add_filter( 'bbp_get_topic_reply_link','jc_return_review' );However, the above function causes the following error:
“Warning: Illegal string offset ‘reply_text’ in /homepages/../../../../wp-content/plugins/bp-custom.php on line 111
Ra href=”#new-post” class=”bbp-topic-reply-link”>Reply”But…, when using the following function
function jc_return_review() { return 'Review This Book'; }And the same filter above, the wording gets replaced just fine, but as I mentioned at the start of this post, there is no longer a link. In other words, without my filter, REPLY is a link that takes you to the reply window. When using my filter, Review This Book is present, but there is no link associated with Review This Book.
Thanks for any help here.
Topic: jQuery not loading correctly
Something is broken with my use of BBPress related to jQuery:
Using the jQuery selector does not work. For example:
$(".title") TypeError: undefined is not a functionHowever, using
jQuery(".title")does work. This is breaking other plugins and code I have on my site (http://www.wallyhood.org). I’ve tried disabling all other plugins except for BBPress, and the problem still occurs. I’ve tried enabling all plugins EXCEPT BBPress and the problem doesn’t occur. So it would seem that it must be BBPress causing the issue, except that I would assume lots of other people would be reporting it if that were the case.
Any help?
Hi Guys
A conflict exists with bbPress and the WooSidebars plugin –
The conflict causes the whole forum to return a 503 Error. After much digging found the problem comes from this bbPress function
bbp_get_topic_title() functionand is fixed by changing
$title = get_the_title( $topic_id )to
$topic = get_post( $topic_id ); $title = $topic->post_title;Hope you can add that fix to your next version update – Thank you – Steve
sorry for my english.
i’ve installed bbpress for a month from importing smf too bbpress. i just realized the categories & tags become blank page when bbPress installed… ( i have deactivated bbpress, and the categories & tags become work)
one of my category
http://japanesia.org/category/berita-film-jepang-dan-dorama-jepang/any sollution?
What i mean is i am using bbpress on my wordpress site. It has forum and whenever someone post any thing some points are awarded to him using mcreed point system. But i dont want it to be over used.
So i want to impose restriction like :-
After posting 10 posts in a day the 11th post will not get any points
Or
A user can only post 10 post no more than that.
I will prefer the first one more!
Is there any way to do any of this? Pleas reply