Viewing 5 replies - 1 through 5 (of 5 total)
  • There are some bugs to fix in bbpress-signature.php, so open this file and:
    ( 1 ) Replace all occurence of /better-bbpress-signatures/ with /better-bbpress-signature/
    ( 2 ) in function add_b3p_signature() replace

    $added = add_user_meta( $current_user->ID, 'b3p_signature', $signature_text, true );

    with:

    $prev_signature = get_user_meta($current_user->ID, 'b3p_signature', true);
    $added = update_user_meta( $current_user->ID, 'b3p_signature', $signature_text, $prev_signature );

    Now plugin works perfectly ??

    Didn’t work for me. Also after the change above it looks like the plugin and my theme are fighting over how to style the button.

    Thread Starter Ovidiu

    (@ovidiu)

    Worked partially, the button is now clickable but the field that it opens for me to enter my signature doesn’t have any menu for formatting the text I enter.

    Plugin Author Arun Singh

    (@arun_singh)

    Hi,

    @shecky,

    Thanks for your solution, I have added it to the latest release.

    @ovidiu

    signature doesn’t have any menu for formatting the text I enter.

    I have not added any option for formatting for the signature and assume
    signatures to be text only. Sorry.

    Thanks

    Forum signatures typically have images in them, any plans or solution to allow an image or images with pixel size restrictions? I don’t mind editing php myself if someone has solution? ty

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘support for bbpress 2.3?’ is closed to new replies.