Viewing 1 replies (of 1 total)
  • Plugin Author Christian Bautista

    (@akosicb)

    Hi surya prakash,

    For now there is no default way to do this here’s a code that might help you get data and render it to front end pages

    You first need to get the ID of the contact form you want to get the data from. Contact form data is saved in the post meta table connected to the id of contact form 7 form

    $cf7AdbArr = get_post_meta( $contact_form_id,’cf7-adb-data’, true );
    print_r( $cf7AdbArr );

    After getting all the data you can now either create a shortcode to make it easy to use on every pages or just create a page template to where you can display it manually.

    Hope this helps you,

    Thank you!

Viewing 1 replies (of 1 total)
  • The topic ‘How to show saved data in frontend’ is closed to new replies.