Search Results for 'bbpress'
-
Search Results
-
(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 );
}
}
I totally get that you need to make the change manually due to your specific setup. I don’t get why the change is required in general for a bog standard WP + BB setup.