Search Results for 'bbpress'
-
Search Results
-
Hi, i’m looking for a plugin, that can integrate comments on my wordpress width post in my bbpress. First what I need. When I add a new article ( post ) on my blog, I would like that plugin will automate create a topic on the same title on the bbpress forum. I seen something like that before, but I can’t find that …
It will be nice, if that plugin will also create post on that topic, if someone add a comment to the article on a wordpress blog, maybe it can work in other way too, when someone add post to topic on forum , a plugin will automatically add comment to blog.
Thanks for all help.
(I’ll shorten the domain name, etc., for readability)
I had a forum set up on a sub-domain http://abc.dom.com/bb-login.php which worked fine. The bbPress files were in my server space at public_html/ABC.
I wanted to change the sub-domain name, but not trash and re-upload the bbPress installation. So, I just changed the bbPress files folder to XYZ, and the sub-domain which points to it to http://xyz.dom.com. When I browse to that address, the log-in page shows, but when I log-in it jumps to http://abc.dom.com/bb-login.php, and just keeps doing the same on logging-in from there.
It’s obviously not having a problem finding the bbPress files via the new sub-domain name and content folder, but I can’t find out why it keeps trying for the old sub-domain name. There doesn’t seem to be a link to it in any obvious file. Stumped.
Hi all,
In “bbPress 9.0.5” I used a custom function to display author avatar outside the topic.php, I try the same function on bbPress 1.0 rc 2 and no longer works, can you help me?
Custom function:
function topic_author_avatar( $size = '50', $default = '', $post_id = 0 ) {
if ( ! bb_get_option('avatars_show') )
return false;
$author_id = get_topic_author();
if ( $link = get_user_link( $author_id ) ) {
echo '<a href="' . attribute_escape( $link ) . '">' . bb_get_avatar( $author_id, $size, $default ) . '</a>';
} else {
echo bb_get_avatar( $author_id, $size, $default );
}
}