Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #490980

    Hi,
    I’m having a problem adding a drop down menu in a widget area. I know this is possible but it’s not working. Page info and login credentials below.
    Thanks,
    Gabe

    #491482

    Hi connect4consulting!

    A dropdown menu? Your trying to add the fullwidth submenu element in a text widget? That’s not going to work.

    I’m not aware of any dropdown menu widgets that WordPress has. Take a screenshot and highlight exactly what your trying to do so we can get a better idea.

    Best regards,
    Elliott

    #491555

    Hi Elliott,
    Not a full width submenu. A text widget with a custom menu that functions as a drop down. It’s a donation page and I want the user to be able to select from 20 options – each option goes to a specific donation page. Is there a better way to do this?
    Thanks,
    Gabe

    #491997

    Hey!

    You can add something like this in a text widget:

    <select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);">
        <option value="">Select...</option>
        <option value="http://yousite.com/donation-1">Donation Page 1</option>
        <option value="http://yousite.com/donation-2">Donation Page 2</option>
        <option value="http://yousite.com/donation-3">Donation Page 3</option>
        <option value="http://yousite.com/donation-4">Donation Page 4</option>
    </select>

    Cheers!
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.