Hello,
I apologize in advance for the English language.
On this page: http://pavelvaclavik.cz/poradna/ want to deploy AnsPress.
But I have a problem with setting the plugin. Can you help me please? thank you
Greeting
Pavel Václavík
Hi, I am sure that I had setted base page for my AnsPress setting
This is my edit url, and it will return err_empty_response page to me.
http://xx.xx.xxx.x/discussion/?ap_page=edit&edit_post_id=672&__nonce=c5b72d27a1
Thank you !
For example, instead of showing how many questions there are, show how many subscribers instead?
First, thanks Rahul for answering my previous question. But to expand, when an upvote or downvote is clicked, the USER’s reputation is updated, +5, -3, +2, -1…
But, the number between the upvote and downvote is not updated/incremented. I’ve been looking in the PHP for where this html element gets updated, but can’t pinpoint it. In the vote_up function, where can i find where the QA-specific-post reputation gets updated? Hopefully I can look further into this and help find an issue.
Also, it allows me to upvote or downvote as many times as I want, not doing the typical “upvote, then i click it again and it takes it away.”
public function vote_up($postid, $counts) { $post = get_post($postid); // give reputation to post author if($post->post_type == 'question') $reputation = ap_reputation_by_event('question_upvote', true); elseif($post->post_type == 'answer') $reputation = ap_reputation_by_event('answer_upvote', true); $uid = $post->post_author; if(!empty($reputation)) ap_reputation('vote_up', $uid, $reputation, $postid); if($post->post_type == 'question') $reputation = ap_reputation_by_event('question_upvoted', true); elseif($post->post_type == 'answer') $reputation = ap_reputation_by_event('answer_upvoted', true); $userid = get_current_user_id(); if(!empty($reputation)) return ap_reputation('vote_up', $userid, $reputation, $postid); return false; }
Would like to add a sentence. Can you point me to where I should go to do this? Thanks
Hello, the widget “(AnsPress) Breadcrumbs” dont work on WORDPRESS 4.3.
Thanks.
Can we add follow buttons to the page that shows all the Tags (also the same for Categories)? That way people can follow without having to click into the individual Tag or Category page itself.
Hello,
When I go to click an option I get this message and will not let me click options.
How can we fix it?
What plugin you use for login topbar? in your web. https://gyazo.com/3290d9cc131cdad27ebde2e454dd684e
Thanks.
I found some solutions on web but none of them really works. I want to have firstname and last name on my registration form. Firstname is already there, i want to and last name. When I add it through Users->Profile Fields it shows up but it does not connects to profile. Lastname field in anspress profile is blank. How to connect these fields?