Search Results for 'bbpress'
-
Search Results
-
hi,
i’m working with the wordpress 3.9.1 site network installation.
i have installed the bbpress plugin version 2.5.4 and added the Hebrew mo and po files from wordpress.org and changed their name to bbpress-he_il.mo and bbpress-he_il.po.
also checked that the wp-config has the define (‘WPLANG’, ‘he_il’); and checked that the language in the backend for the Hebrew site is set up to Hebrew.
I’m working with twentyten child theme but even if i change it to twentyten original theme the forum is still showing up in English.
i have tried everything and can’t find a solution.
anybody has any suggestions?Hi,
I have a problem with syntax highlighter in bbpress (plugin). Normaly, after I’ve used Crayon and paste the example code
void loop() { digitalWrite }it generates in the background (if I switch to text mode)
<pre class="lang:arduino decode:true crayon-selected">void loop() { digitalWrite }</pre>It works good for admin, but if somebody else (member) try to post a code, the tag
</pre>disappears, so his code will be not highlighted and in the published post I can see the code and a part of Crayon’s tag like this<pre class="lang:arduino decode:true crayon-selected">void loop() { digitalWrite }I’ve noticed about restrictions in html-tags etc. but as I can see in formatting.php pre is allowed tag.
What is the problem?
Thanks in advance.
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?