Upgrade from 4.0.5 to 4.0.6

Also see here – https://anspress.io/questions/question/new-release-and-new-website/

Upgrade from 4.0.5 to 4.0.6

I think that’s a typo – the changelog still shows as 4.0.5 == Changelog == = 4.0.5 = * Fixed user profile rewrite and reputation query * Fixed: dropdown reputation for reputation count * Addons not toggling on WpEngine * Hide notification and user profile if not logged in * Fixed: filters are not persisting * Language updated * Fixed: restored_question activity string update * Fixed: admin JS errors * Fixed: notification dropdown * Removed CSS minify folder * Improved list filters * Fixed buddypress “load more” issue, disable AnsPress notification if buddypress enabled * Added reputation re-count * Added answer and flags count * Added vote re-count * Fixed theme updater * Fixed: load more not working in BP profile

Can’t Type in Description Field

This really depends on the order that the plugins are executed. My guess would be that the Facebook Feed plugin is conflicting with AnsPress. Unfortunately, we are not in a position to support third party plugins outside of AnsPress.

User profile shortcode always show anonymous

Definitely a bug – I need the same functionality 🙂

Can’t Type in Description Field

I got it to allow typing in the field after deactivating my plugin (facebook feed wd) Do you know how I might get these plugins to work together without errors?

Static Homepage?

Hello George, Its because our theme is set to show AnsPress in home by default. To fix this, simply rename or delete front-page.php from theme. I will add an option for this in upcoming version.

Add-on Toggles Don’t Save in AnsPress Settings

Hello Jeff, This mostly happens when hosting company uses redis for caching. After saving make sure to reload page once more. A fix is already added in upcoming version.

Page Not Found For Ask a Question

Thank you. I removed the space, but no luck there. I’ve downloaded the latest version from you, but how do I install it on my site without removing the old version and possibly losing my old anspress questions and answers?

I can’t buy the theme…

I’m using X-Theme now and I’d like to use AnsPress as a subpage. Now that I’ve purchased the theme I’m realizing this theme has to be applied at the site level, is that correct?

Redirect registration and logic page

@Anup – here you are – please these two functions in your functions.php (child theme) add_filter( ‘login_url’, ‘change_login_page’, 10, 3 ); function change_login_page( $login_url, $redirect, $force_reauth ) { return home_url( ‘/login’ . $redirect ); } add_filter( ‘register_url’, ‘change_register_page’, 10, 3 ); function change_register_page( $login_url, $redirect, $force_reauth ) { return home_url( ‘/register’ . $redirect ); } Obviously, change “/login” and “/register” to match the actual URL you want to use