Skip to:
Content
Pages
Categories
Search
Top
Bottom

Adding multiple dropdown menus to the BP Compose Message page?


  • reidwalley
    Participant

    @reidwalley

    (Running BuddyPress 1.1.1 & WPMU 2.8.4a)

    Adding multiple dropdown menus to the Compose Message page? (My Account > Messages > Compose). I have successfully replaced the textarea code with 1 dropdown menu (buddypress-1.1.1 > bp-themes > bp-default > messages > compose.php @ line 32) – and it works great. But when I add a second dropdown menu only the second menu’s choice is sent to the recipient. How can I get both dropdown menu choices to get sent?

    Here’s what I have:

    <label for="content"><?php _e( 'Menu 1', 'buddypress') ?></label>
    <select size="1" name="content" id="message_content" value="" />
    <option selected>Select:</option>
    <option>Dropdown Menu 1</option>
    <option>2</option>
    <option>3</option>
    <option>4</option>
    <option>5</option>
    <?php bp_messages_content_value() ?></select>

    <label for="content"><?php _e( 'Menu 2', 'buddypress') ?></label>
    <select size="1" name="content" id="message_content" value="" />
    <option selected>Select:</option>
    <option>Dropdown Menu 2</option>
    <option>2</option>
    <option>3</option>
    <option>4</option>
    <option>5</option>
    <?php bp_messages_content_value() ?></select>

    Any help, recommendations or site are much appreciated!

  • The topic ‘Adding multiple dropdown menus to the BP Compose Message page?’ is closed to new replies.
Skip to toolbar