Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author shanebp

    (@shanebp)

    You cannot get rid of it.
    But you could change the Subject input type to ‘hidden’.

    For example, in this file:
    bp-profile-message-ux\bp-profile-message-ux.php

    You could change:
    $button_divs .= '<input type="text" size="41" maxlength="50" name="private_message_subject" id="private_message_subject" /><br /><br />';

    To:
    $button_divs .= ‘<input type=”hidden” name=”private_message_subject” id=”private_message_subject” value=”New Message” />

    ‘;

    And delete the field label:
    $button_divs .= '<label for="private_message_subject">' . $subject_label . '</label>&nbsp;';

    Thread Starter milesnext

    (@milesnext)

    Thank you Shane bp!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Delete subject’ is closed to new replies.