New development version allow voting from wp-admin:
Is it gonna be in version 2.5? Please tell us when? 🙂 And what new features gonna be there ? thanks
I have already answered that before:Â https://anspress.io/questions/question/reputation-for-referring-user/?show_answer=8579#answer_8579 I will say again: it should work in a different way. Not as list of constants to look up to, but list of events (actions), that anspress automatically hooks into, automatically awarding set number of reputation. Here is a sample code how it was supposed to be implemented: $reputation_actions = ap_get_reputation_actions(); // from db foreach($reputation_actions as $ra) { if(is_not_null_and_stuff($ra) && $ra->reputation_gain != 0) { add_action($ra->action_name, 'ap_auto_add_reputation'); } } function ap_auto_add_reputation() { $rep_gain = ap_get_rep_gain($current_action_name); ap_meta_change_stuff($proper_user_id, $some, $params, $rep_gain); } // Now the only thing author of addon needs to do is to handle his own stuff, and then call do_action('my_plugin_add_rep', $userid, $some, $params) Removing rep should work ok this way as well. Please consider.
Dima, Thanks for letting us know. I will check the bug and push a fix soon.
Hi, yes that is an interesting question !
This has been posted before and this issue cannot be fixed. As AnsPress CPT cannot be changed at the moment. You can manually try changing Sensei.
Please read the document included with package. Let me know in case there is any problem finding documents.
Hey, I asked AnsPress translation. Do all of the files to translate it work? and whether it be .mo and .po file name? Thank you!
Fix has been pushed to github.
In the translation file can you add the 2nd help text. ‘Select a topic that best fits your question’ thanks!