Message position in form?


Home Forums Front End PM PRO Message position in form?

This topic is: Resolved
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #42476
    tonlogicdevworks
    Participant

    Hello,

    How do we change the position of the fields sent in our frontend form? We would like the Quote and reference fields above the sent message. Thanks!

    https://prnt.sc/z0logx

    #42490
    Shamim Hasan
    Keymaster

    You can use fep_get_the_content hook. eg

    add_action( 'fep_get_the_content', function( $content ){
        if ( $cus_fep_textbox1 = fep_get_meta( fep_get_the_id(), 'cus_fep_textbox1', true ) ) {
    	return '<div>Quote Number: ' . esc_html( $cus_fep_textbox1 ) . '</div>' . $content;
        }
        return $content;
    });
    
    #42602
    tonlogicdevworks
    Participant

    Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)

You need to purchase ‘Front End PM PRO’ to create topic in this support forum.

If you already purchased ‘Front End PM PRO’ please LOGIN.