I am using the AnsPress Forum plugin and I’d like to be able to track when users sign up, upvote, post Qs, post As, reply, etc.
What is the best way to do this? Can GA be customized to track these actions? Does Wassap have more out of the box solutions?
Thanks!
Heres my website: http://producerhub.co/user/Flom/about/
I’m trying to change
“Questions” & “Answers”
to
“Posts” & “Replies”.
in the left hand user navigation, how do I do this?
Hi Rahul,
I wonder if there will be a simple version of the plugin?
I am not running a question answer website so I don’t need all features that related to performance (additional js, css, php).
If you can do a simple version without registration and profile page and other fancy stuff that would be great. Just search and question – answer, comments.
I think the plugin is great but there are many website that do not need all features.
Will it be possible?
PS. BTW when will membership extension be ready?
thanks
Hi,
I have the following code to use automatically to use postId as slug instead of post title.
add_action( 'save_post', 'using_id_as_slug', 10, 2 ); function using_id_as_slug($post_id, $post){ global $post_type; if($post_type=='post'){ if (wp_is_post_revision($post_id)) return false; remove_action('save_post', 'using_id_as_slug' ); wp_update_post(array('ID' => $post_id, 'post_name' => $post_id )); add_action('save_post', 'using_id_as_slug' ); } }
and it works for normal post. but doesn’t work for anspress questions.
I am suspecting $post_type==’post’ doesnt apply to anspress? Could you please provide me any insight as to how to make it work? thanks!
Enabled Recaptcha with correct keys but then posting does not work.
Check www.DPK.nu
Error message: Please check Capcha
With latest wordpress version and latest anspress files, I get this error on profile page:
Notice: ap_is_my_profile was called with an argument that is deprecated since version 2.4! Passing user_id in ap_is_my_profile is deprecated, function will check again currently logged in user.
Hi,
I am using anspress with buddypress.
it looks like BuddyPress profile pic functionality overwrite anspress.
eg: i upload an profile image on anspress profile page, although it says upload successful, but nothing changed even after refresh.
then i disabled buddypress plugin, the new uploaded profile image finally show up.
so my quesition is, how do i use anspress profile image functionality but not the buddypress one?
thanks