• Resolved dareadel

    (@h2ofilters)


    I would like to customize the booking form page by using flexbox to display the fields better that it is now. I would like to place two fields on one line instead of the correct stack of fields. But it doesn’t seem that the booking-field.php is the the correct file to modify. I am also trying the Genesis column classes but not working. Does anyone know the file that contain the html for the booking form?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    at the moment you can use custom css styling using the booking form css class or id name to modify the frontend booking form.

    *you can use browser inspect elements to get the css class or id name

    Thread Starter dareadel

    (@h2ofilters)

    Okay. Can you tell me the right template to work with? I need a custom template but couldn’t locate the right one that displays the frontend booking form.

    Thread Starter dareadel

    (@h2ofilters)

    I got the form to style just as I want by using flexbox. I want the fields to arrange in 2 columns instead of default stacked one column. Here is my flex CSS in case it becomes useful for anyone:

    .em-booking-form-details {
    display: flex;
    flex-flow: row wrap;
    
    }
    .em-booking-form p { 
    clear:left;
    flex-basis: 100px;
    margin-left: 55px; 
    }

    I would still like to modify the template’s HTML if I know the template used for the frontend booking form.

    Hello,

    You could check the link https://wp-events-plugin.com/documentation/using-template-files/ to know how to properly use template files on your theme. Depending on which part you want to modify, The file you’re looking is probably located under: events-manager\templates\forms

    Thread Starter dareadel

    (@h2ofilters)

    Thanks @timrv. I just modified the Single location page format by simply adding the Google map iframe.

    <div style="float:right; margin:0px 0px 15px 15px;">#_LOCATIONMAP <br>
    iframe {map code here} </iframe>
    </div>

    While it works, I am not sure if it’s acceptable. If it will not interfere with the plugin. Please advice.

    Thread Starter dareadel

    (@h2ofilters)

    Oops! Sorry this is a reply to a wrong post. My apology.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Customizing Frontend Booking Form’ is closed to new replies.