Front-end form integration
-
Hi Matt, first, thanks for the great plugin. I’m trying to add CFS fields to DW Question & Answer (DWQA) (github) answer type. I’m planning to make it a “mini-plugin” to work alongside yours once it’s working.
I’ve got the form appearing correctly, but no success yet in “receiving”/saving the CFS post data. Here’s what I’ve got so far:
function my_dwqa_submit_answer_ui( $question_id) { ?> <div class="cfs_wrapper"> <? CFS()->form->load_assets(); $cfs_field_groups = CFS()->api->get_matching_groups( array('post_types' => array('dwqa-answer')) ); $cfs_field_groups = array_keys( $cfs_field_groups ); //echo "\n<!--\n" . print_r($cfs_field_groups, true) . "\n-->\n"; $cfs_params = array( 'front_end' => false,// already inside a form 'post_id' => false, 'post_type' => 'dwqa-answer', 'field_groups' => $cfs_field_groups, ); echo CFS()->form($cfs_params); ?> </div> <? } add_action( 'dwqa_submit_answer_ui', 'my_dwqa_submit_answer_ui' ); function my_dwqa_add_answer( $answer_id ) { // Do I need to do something here? } add_action( 'dwqa_add_answer', 'my_dwqa_add_answer' );
Thanks in advance for any help you can give me at all!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Front-end form integration’ is closed to new replies.