Hello, Just add this css code to any css file you want: #anspress .ap-category-item .ap-cat-img-c .ap-category-icon{ display: none; }
Hello Dr. Atul, Doing it is a piece of cake: unset( anspress()->forms[’question’] ); Check source code here AnsPress::get_form().
Hello Adam, Just made a commit for fix this issue. From now on comments modal will not be closed on clicking outside of modal.
Hello Mark, Its will be added to our site before the Christmas along with many other new features. Thanks
Hello Dr. Atul, I don’t see such issue while using with the plugin you have mentioned. Even order is working fine.
Hello Mark, just added a new hook ap_vote_btn_html. Kindly check GitHUb.
Hello Guys, Just made a commit to fix the issue. @atultiwari codes from our FAQ will work now.
Hello Adam, So, you want to change question post_name. Let me add a field to question form for admins and moderators. Expect this in 4.1.5.
Since the originally posted method in FAQ didn’t work for me. Even the Anspress Ask Form stopped working, I reverted back to last officially published version (4.1.4). After seeing the e.g. posted in FAQ, I modified the `submit_question_form` function and removed the redirect part. It’s working for me. I don’t know if I am on the right track or not. Rahul please have a look at the gist (and also why your modified function is not working?) – https://gist.github.com/atultiwari/4bc9fd36c5fb2a18081762189fd6a347 Also, it appears that in the e.g. posted in your FAQ, you forgot to implement `$qameta`. Right now, I am implementing following method (it’s present in linked gist) – ` ap_insert_qameta( $post_id, $qameta );ap_insert_qameta( $post_id, $qameta ); $activity_type = ‘new_question’; /** Following should have worked, but not working – ap_activity_add( array( ‘q_id’ => $post_id, ‘action’ => $activity_type, ) ); **/ // Following function appears to be deprecated, but it was the only thing working for me – ap_update_post_activity_meta( $post_id, $activity_type, get_current_user_id() ); ` Please comment if this is the correct way, or something else should be done (especially `ap_activity_add` didn’t work, while `ap_update_post_activity_meta` worked for me). Regards,
I am testing an image upload here for your reference.