With recent changes to Add Meta Tags, it is now completely possible to make it work good with AnsPress. I’m using it, look how good it works: http://dima.stefantsov.com/qa/ add_action('wp', 'd_anspress_amt_fix'); function d_anspress_amt_fix() { // Only make changes when inside AnsPress. if (!function_exists('is_anspress') || !is_anspress()) { return; } add_filter('amt_exclude_schemaorg_metadata', '__return_true'); add_filter('amt_exclude_dublin_core_metadata', '__return_true'); // Feed AMT with real question-post. if (is_question()) { add_filter('amt_get_queried_object', function(){ return get_post(get_question_id(), OBJECT); }); } }
Can confirm this issue. I have the same problem. Here’s the response code. ap_responce: true is_ap_ajax: true message: "Something went wrong, last action failed." message_type: "error"
The same I have. Rahul, please assist.
You can expect this feature to be available in upcoming version.
You can see example here: https://github.com/anspress/anspress/blob/master/includes/user-fields.php#L56
This feature cannot be added to core but you can simply filter question query to exclude users questions.
I’m trying to find a way to display the Related Questions right below the Questions and Answers (or after posting the questions). But, there’s no widget like ANnsPress After ( you have for AnsPress Before). So, how can I display the Related Questions in the following scenario: Question: Answer 1: Answer 2: Related Questions
Simply add this CSS to your theme style.css .login-page { background: rgba(0, 0, 0, 0) url("../images/login-bg.jpg") no-repeat scroll center center / cover ; } Replace login-bg.jpg to your image name and you can upload your image to AskBug/images/
This has been answered many time here, kindly search. Also you can have a look at category plugin.
Simply hide follow button using CSS.