Hi,
I have installed WP 2.8.4 and the most recent version of BBPress. Via the user role mapping, I managed to get a user who is registered through WordPress to have a default role in BBPress. However, I cannot find any plugins that allow anyone who is registered through BBPress to have a default role (it’s currently set to None) in WP. Any idea how may I achieve that?
Haha a FB plugin would indeed rock our bbpress worlds, Buddypress has this feature (at least in their demo), who’s planning to “steal” the source code
sorry, sounds like you have a plugin enabled that uses the allow_images_allowed_tags function & looking at my above post, there is also some unneeded code.
try:
<?php
/*
Plugin Name: My Images
Plugin URI: https://bbpress.org/
Description: Allows <img /> tags to be used in forums.
*/
add_filter( 'bb_allowed_tags', 'my_images_allowed_tags' );
function my_images_allowed_tags( $tags ) {$tags['img'] = array('src' => array(), 'title' => array(), 'alt' => array(), 'class' => array()); return $tags; }
?>
Not to bring this back from the dead, but if you’re still interested for the time being…
https://wordpress.org/extend/plugins/buddybar-in-bbpress/
create a file in your my-plugins directory called my images or something like that.
add the following code
<?php
/*
Plugin Name: My Images
Plugin URI: https://bbpress.org/
Description: Allows <img /> tags to be used in forums.
*/
add_filter( 'bb_allowed_tags', 'allow_images_allowed_tags' );
function allow_images_allowed_tags( $tags ) {$tags['img'] = array('src' => array(), 'title' => array(), 'alt' => array(), 'class' => array()); return $tags; }
add_filter( 'get_profile_info_keys','bb_member_id_in_profile',255);
function bb_member_id_in_profile($keys) {
global $self;
if (empty($self)==true && isset($_GET['tab'])==false && bb_get_location()=="profile-page") {
(array) $keys=array_merge(array_slice((array) $keys, 0 , 1), array('ID' => array(0, __('Member #'))), array_slice((array) $keys, 1));
}
return (array) $keys;
}
?>
Activate the plug in & all should work as long as you use
<img src="" alt="" title="" class="" />
Hello
I’ve just finished installing the wordpress and bbpress and did the dual log in correctly but now I want to know how to set the User Role Map correctly as I do not know how or which one to pick and associate with each one
For example, for WordPress Administrator shall I pick key master or which one?
Also for WordPress Editor which one I should pick!?
Thanks
hi arturo … do you mean when you login in wp you doesnt automatically login to bbpress ??? if that so then I have the same problem …
is <img sRc=”www.liuso.com/logo.jpg”> change scr to src….
Where do you want to put this image? in post try [img]www.liuso.com/logo.jpg[/img] use… bbcode lite and bbcode buttons plugins… search here https://bbpress.org/plugins/
if not… I don’t know
I don’t speak english ok
…
It is the latest version for both of them …
What version of WordPress did you install?
Hello,
This is my 1st try to have a website and I’ve goggled a lot for the tools I may use and found that wordpress is the most highly recommended one.
Please I do need a forum to be integrated with the website and according to Google it shows that BBPress is the most recommended one to be used with WordPress.
The question now is that I can find the installation instructions for BBPress standalone but I can not find how to integrate WordPress and BBPress together at all.
So please may you help me and give me any links for such a thing as it was three hours searching in different places with no luck so far and I do fel very stupid for not catching any result yet.
I’ve just installed WordPress only without any plugins or any extra just the pure installation and default settings.
I am sorry if this is a very newbie question but I hope that some one can help.
Thanks,
Take care
Tomwi: can you post your code for showing mentioned template
*post title*
Posted by: *user* in *forum*.
or send it to me – procka@tasty.sk
greets
Vlado
have you tried https://bbpress.org/plugins/topic/cnsor/ ?
We use it on our site for swearing. Though it doesn’t do wildcards so it would probably be quite easy to get around.
Hi,
just finished my article about bbpress plugins:
http://www.web-development-blog.com/archives/useful-plugins-for-your-bbpress-forum/
if you like the article please vote for the article at dzone:
http://www.dzone.com/links/useful_plugins_for_your_bbpress_forum.html
Thanks (Excuse me, if this post is to spammy for the forum)
Olaf
In a few days, I completed the translation of bbPress (1.0.2) from English to Turkish. There I share the link you can download the language file (.mo format):
http://www.rahmetli.info/translation/bbpress-turkish.zip
More – Fazlası:
http://rahmetli.info/forum/forum/bbpress-tr
English Note: I’ll be waiting for feedbacks to make the translation more understandable, so please e-mail me at ebs [at] rahmetli.info for advices. Thank you.
Türkçe Not: Türkçe için üstteki adresi ziyaret ediniz. Ve lütfen çeviri hatası varsa size göre ebs [at] rahmetli.info adresini kullanarak geri bildirimde bulununuz. Teşekkürler.
Great than it’s time to change that
I tried this with Office2007, not working.
eclipsenow, you can email me too. I have all three working together. Right now I’m changing certain links because the profile has to all point to BuddyPress.
It only loads faster because several parts of 1.0 are still not optimized yet and use too many queries.
The point is a proper mysql cache, especially if it’s on the local machine, is as fast as memcached unless you have an overloaded mysql server (that is also typically external to the webserver).
When I have memcache enabled on my local server, bbPress loads an average of 20ms faster (a lot for local execution in my opinion), although I haven’t put anything together to test this yet. Memcache works well simply because hard drives are generally slower than RAM.
I have included this piece of code at the top of my index.php file:
<script language=”javascript”>
if(top==self)
this.location=’http://www.somedomein.es/somefolder/page’;
</script>
It checks if bbpress is loaded into an iframe and if not, it redirects to http://www.somedomein.es/somefolder/page and this page load bbpress correctly into an iframe.
It works perfectly but it breaks the style making the some fonts bigger that they should.
If I remove the javascript code everything works normally again.
Any suggestions ?
Thanks in advance.
Even though it is fixed in https://trac.bbpress.org/changeset/2327
I svn bbPress 1.0.2 and again I had to chmod the my-templates folder