Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Always login


so1o
Participant

@so1o

i think you can do this by overridding the bb_cookie function and replacing it with

function bb_cookie( $name, $value, $expires = 0 ) {

if ( bb_get_option( ‘cookiedomain’ ) )

setcookie( $name, $value, 0, bb_get_option( ‘cookiepath’ ), bb_get_option( ‘cookiedomain’ ) );

else

setcookie( $name, $value, 0, bb_get_option( ‘cookiepath’ ) );

}

Skip to toolbar