Hello Siamion, Here is the hook you need:
Hello Siamion, Add this to roadmap and will be checked and fixed soon. https://github.com/anspress/anspress/issues/422
Hello, You can use ThemeMyLogin plugin.
Hello Matt, I have added this to my roadmap. Keep an eye on issue here: https://github.com/anspress/anspress/issues/421
Hello Kanika, This was fixed already and code is in our GitHub repo. Please get latest code from GitHub and then try.
Hello Imran, Can you please get in touch with me by email at [email protected].
Hello Imarn, I was not available from few days. I just came back and will reply to your queries.
Hello Paul, There are some plugins which automatically adds taxonomy to a post based on their content. Please check for it on wp plugin repo.
Hello, May be PayPal does not support Turkey. Many people reported this earlier. Please try our alternative payment methods. Yes, its supported.
I’ve gotten the custom field to save and update custom meta field. I update custom field with URL using call back from video recorder (clipchamp). Here is my final code: function embed_video_field( $form ) { // Record Button field. $form[‘fields’][‘record’] = array( ‘html’ => ‘<div id=”clipchamp-button”></div><p class=”ap-field-desc” id=”description_record”>Not required. Feel free to record a video for your question. Limit one video per question.</p>’, ‘order’ => 8, ); // Record Button Message. $form[‘fields’][‘message’] = array( ‘html’ => ‘<p class=”ap-field-desc” id=”hit_record”><a href=”#” onclick=”window.location.reload(true);”>Reload this page</a> if you want to re-record.</p>’, ‘order’ => 9, ); // Record Success Message. $form[‘fields’][‘success’] = array( ‘html’ => ‘<p class=”ap-field-desc” id=”record_success”>Your video was successfully uploaded. It will be available to watch once you submit your question.</p>’, ‘order’ => 10, ); // Video field. $form[‘fields’][‘video’] = array( ‘type’ => ‘input’, ‘subtype’ => ‘text’, ‘label’ => __( ‘Embed Video’ ), ‘order’ => 99, ‘sanitize’ => ”, // Comma separated list of sanitization filters ‘validate’ => ”, // Comma separated list of validation methods ); return $form; } add_filter( ‘ap_question_form_fields’, ’embed_video_field’ ); function hooks_save_meta_value($post_id,$post) { $form = anspress()->get_form( ‘form_question’ ); // Get all sanitized values. $values = $form->get_values(); if ( ! add_post_meta( $post_id, ’embed_video’, $values[‘video’][‘value’], true ) ) { update_post_meta( $post_id, ’embed_video’, $values[‘video’][‘value’] ); } } add_action( ‘ap_after_new_question’, ‘hooks_save_meta_value’ );