Hi,
How do I go about adding content to the Contact page AFTER the contact form?
Hi,
How do I go about adding content to the Contact page AFTER the contact form?
Hi,
Edit includes > contact-form.php and find this code
$contact_form = new avia_form($form_args);
$contact_form->create_elements($elements);
$contact_form->display_form();
Replace it with
$contact_form = new avia_form($form_args);
$contact_form->create_elements($elements);
$contact_form->display_form();
the_excerpt();
Then edit your Contact page. Look for Screen Options, ticked the "Excerpt" metabox. You can insert text or images on the Excerpt metabox and it will be displayed at the bottom of the Contact page.
Regards,
Ismael
Great, thank you!
This topic has been closed to new replies.