Answer edit notification sending emails to all users

Hello Kanika, This was fixed already and code is in our GitHub repo. Please get latest code from GitHub and then try.

Top users widget takes 256 seconds to load

Hello Imran, Can you please get in touch with me by email at [email protected].

No support for Askbug? We’ve purchased the theme for a reason

Hello Imarn, I was not available from few days. I just came back and will reply to your queries.

How can I customize the ask page to automatically select a certain category and/or tags?

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.

Payment Failed

Hello, May be PayPal does not support Turkey. Many people reported this earlier. Please try our alternative payment methods. Yes, its supported.

custom field not saving

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’ );

Why there’s no information about AskBug License will expires until 1 year?

Hello Rima, Yes, you need to renew licence after an year. After one year, license keys may be renewed at a 40% discount from the purchase price of a new license. If you want a lifetime licence then you can email me at [email protected] Thanks

Buddypress groups integration workaround

Hello Guys, Yes, this is completed functionality of AnsPress pro. I will not be able to share more detail right now but it will be avilable in initial release. Yes Fred is right, I’m not able to download file. Please share your code from gist.

custom field not saving

Hello Matt, Here is an example I am doing to save a image field in a custom form. Also make sure to add valid mimes in field args. By default AnsPress allows only image mimes.

Buddypress groups integration workaround

Hi @superphi and thanks for this contribution! I think this was actually worked on but I’m not sure how far the devs have been. The main dev, Rahul, has some health problem right now, so give him some time to reply. I’m sure he’ll be glad to help and tell you if it’s viable or not. 😉 PS: your link is not working right now, will try again later.