Select or checkbox

Support General Select or checkboxResolved

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #40921
    info@alles-ok.nl[email protected]
    Participant

    Hi..I have a question.

    I want to make a custom field with with some choiches/options. After the admin has made his choice there will be some text showing at the front page off the website.

    Another explanation.

    If the user choose option 1 then a tekst will be showing at the frontpage.
    If the user choose option 2 then another tekst will be showing at the frontpage and so on.

    Is this possible and if it is how can i do this?

    Hope to hear from you!

    #40935
    PeterPeter
    Moderator

    Hello,

    I think it is a basic case to output the value on the frontend. You can use an if statement to do that. For example:

    if( field_value == 'something' ) {
        echo 'ABC';
    } else {
        echo 'DEF';
    }

    Please read more on the documentation to get the field value https://docs.metabox.io/fields/select/

    #40943
    info@alles-ok.nl[email protected]
    Participant

    Thanks Peter,

    I am going to take a look.

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