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?
bbpress 2.5.4 hebrew translation not showing in front end
Published on June 17th, 2014 by elis85Crayon Syntax Highlighter not working / tags issue
Published on June 17th, 2014 by LexadorHi,
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.
Changing Font Color & Size
Published on June 16th, 2014 byWhere would I need to go to increase the font size and default color?
Compared to the rest of my blog, the forum font is small.
thanks for any help with this issue.
Nick
Importing SMF forum success but..
Published on June 16th, 2014 byWorked very well, I was able to import my SMF, but is it possible to have the images/photos that were in posts to be moved over. Not sure if the post coding allows for transfer. Not a huge loss, this was/is just a family blog/forum.
Thanks,
Nick
Has anyone used the bbpress ajax replies plugin??
Published on June 16th, 2014 by Robkkhttps://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
reply email notifications are not being sent
Published on June 16th, 2014 by shanebpbbpress 2.5.4
buddypress 2.0.1
WordPress 3.9.1
Logged 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?
Filter topic "reply" with different wording, but keep link active
Published on June 16th, 2014 by JerryI have read the following explanation on using filters, and have become somewhat proficient on this. https://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.
Remove the sidebar from Forum
Published on June 16th, 2014 byHello,
I am testing out the forum and don’t see an option during the creation of a forum to remove the sidebar.
I am using theme Point Version: 1.0.6 By MyThemeShop.
Thanks for any help in resolving this.
Nick
jQuery not loading correctly
Published on June 16th, 2014 by wallyhoodSomething 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 function
However, 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?
bbPress Woosidebars plugin conflict causing 503 error
Published on June 15th, 2014 by Steve TrumanHi 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() function
and 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