Hi, I am running a multisite with AnsPress and BuddyPress. Currently the VOTING doesn’t work. The thumb up and thumb down buttons are there, I can click them and get a notice, “Thank you for voting.” But the number never changes to 1, 2, or -1. It stays at 0.
Hi @Katelyn_Bourgoin Excuse me, but you and we have a sorting by reputation button on users page by default… please check it. good luck
Hi @chuki Sorry, this ability is a options of AnswerBox theme and isn’t a plugin. You can use several plugins that shared on WordPress.org instead of this feature. But for adding a simple login-logout link on your nav-menu, you can simply add these codes in the end of functions.php file of your theme. add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2); function add_login_logout_link($items, $args) { ob_start(); wp_loginout('index.php'); $loginoutlink = ob_get_contents(); ob_end_clean(); $items .= ' ‘. $loginoutlink .’ '; return $items; } Good luck. UPDATED: For a plugin, you can try (by 15$ ;-)) “Ajax Login/Registration Bar WordPress” on codecanyon.net. (but it is out of date). /or “Admin Bar Login” on WordPress.org (if you allow admin bar for your users&viewers) /or “WP Sliding Login/Dashboard Panel” on WordPress.org (this is sliding login form, try it!) /or a lot of modal login form plugin on WordPress.org like “SimpleModal Login” /or “Login With Ajax” for a nice login widget. Good luck
Hi @Clarissa_Wu Simply change them (and any phrases) in your translate file (create ap-en_US.mo file by Poedit). You can use translate-file for replacing and translating. Have a good time Clarissa.
If I copy this code it will work in my page? Or I need edit something? Thanks.
Simply edit login-sginup.php and edit links and remove popup html. Make sure to read instructions for overriding AnsPress theme. You can add this to login-signup.php for social login buttons: <?php do_action( 'wordpress_social_login' ); ?>
I think you are looking for this: https://gist.github.com/rahularyan/39cbdaf3cedc7355f9dc
Show full question page. paste your whole code in gist.github.com and then paste link to your gist.