Cant add tags for new questions from admin area

It’s a bug with the plugin. happy wheels

Cant add tags for new questions from admin area

This appears to be a bug with the plugin. It was said to be getting fixed in the next update but its been months and no sign of it. I have been able to add a workaround to get this to work though. I have added this via a custom plugin but you could do it anyway you can. Seems the above code stops the tags working if used from the front end editor. Adding the following has fixed that for me too. Hopefully a proper fix is coming soon.

Feature request – Subscribe to a tag

Could you give me an idea of how to switch on these notification features? I have installed the latest version of the plugin and also Notifications extension is switched on and this is what I only see:  Please help me to switch on notifications. Thank you for this great plugin!

Contributing to AnsPress via GitHub

Hello Rahul / Maintainers – I submitted 2 pull requests in GitHub today: https://github.com/anspress/anspress/pulls #521 – Updated theme.php – Added filter to customize the Ask button text. #522 – Updated class-validate.php – Added ‘is_checked’ method to validate if checkbox is checked. Please review and let me know if any changes need to be made. Thanks!

UPCOMING FEATURES AND IMPROVEMENTS

My profile page does not have the summary header near the avatar, it actually doesn’t look much like it at all except for the tabs. I’m excited, please let us all know !!

Automatically populate the tags field from URL

Is it resolved?

How to disable “comment approval” ?

I think selecting ‘Status of non-loggedin post’ from Moderate to Publish should do the magic. Please note that this setting will apply to all non-loggedin posts and Publish all questions/answers/comments without requiring moderation. You can see this setting under AnsPress Options -> User Access Control  -> Posting Permissions Section.

How can i change a categories urls?

Yes, it is possible. See the steps below: From the Admin Dashboard, select AnsPress -> Options. This will take you to AnsPress Options Page. Hit ‘Edit Page’ under Pages/’Categories page’ item. Now on the right side panel, you will see the Permalink option. Change the URL text from ‘categories’ to your custom text, and hit Update. Hit Preview, and you will see the URL for the page changed to your custom text. Let me know if you encounter issues or need additional clarification.

AskBug – WordPress theme released

hello there i have askbug theme buy before now i install my project but  i cant uptade themes

Is it possible to remove the Answer Block from being displayed if a user just want to post ideas?

First of all, Big Thanks to Rahul for putting together this great plugin. Really appreciate his efforts! Well, I figured out the customization and here is what I did to implement it. Posting this for the benefit of the wider AnsPress community: Added a custom checkbox that users are required to check when they post an idea. Added custom field using the hook as follows: add_filter( ‘ap_question_form_fields’, ‘my_function_name_with_custom_field_added’ ); Sample code on adding custom fields can be found at the link below: https://anspress.io/resources/faq/anspress-form-and-validation-api/ Added code to save the value from the custom checkbox field. The value will be saved in the meta_value column for the meta_key specified in your custom code, and saved to wp_postmeta table for the post_id. Added the following code: add_action( ‘ap_processed_new_question’, ‘my_custom_save_method’ , 10, 2 ); add_action( ‘ap_processed_update_question’, ‘my_custom_save_method’ , 10, 2 ); Used the update_post_meta method inside my custom save function (my_custom_save_method) and passed the post_id, meta_key and meta_value parameters as follows: update_post_meta($post_id, ‘meta_key_name’, ‘meta_key_value’); Changed the Ask Page title to ‘Ask Question / Post Idea’. Changed the Ask Page title to ‘Update Question’ or ‘Update Idea’ as applicable when user edits an existing question or idea. Made the button text on Ask Page as generic – ‘Submit’ (for new posts) and ‘Update’ (for updating existing posts). Appended the flag ‘[IDEA]’ to the question title for easy identification of ideas. See link below for guidance on how to implement this: https://anspress.io/resources/faq/how-to-add-solved-in-anspress-questions-title/ Modified the Ask Button text on the Anspress base page to ‘Ask Question / […]