Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Change position for post inputfield

If you don’t have a functions.php in tour theme folder, just create one & add the above code, just make sure to include the opening & closing functions, so it would look like

<?php
function bb_reset_newpostlink() {
global $link, $topic_id;
$link = get_topic_link( $topic_id );
}
add_action( 'bb-post.php', 'bb_reset_newpostlink' );
?>

Skip to toolbar