I was about to create a same question. Let me elaborate. To create proper meta tags, microformats – I’m using excellent Add Meta Tags plugin. It doesn’t work well with AnsPress though: As you can see, it thinks current page link is just dima.stefantsov.com/qa/ (really bad for SEO! equally bad for sharing questions in social networks) Then it thinks description is [anspress] shortcode, which is content of base page. Here is a piece of code AMT uses to get description: elseif ( is_singular() ) { $content_desc = amt_get_content_description($post); if ( !empty($content_desc) ) { $metadata_arr[] = '<meta property="og:description" content="' . esc_attr( amt_process_paged( $content_desc ) ) . '" />'; } function amt_get_content_description( $post, $auto=true ) { if ( is_singular() || amt_is_static_front_page() || amt_is_static_home() ) { // TODO: check if this check is needed at all! $desc_fld_content = amt_get_post_meta_description( $post->ID ); if ( !empty($desc_fld_content) ) { // If there is a custom field, use it $content_description = $desc_fld_content; } else { // Else, use the post's excerpt. Valid for Pages too. if ($auto) { // The generated excerpt should already be sanitized. $content_description = amt_get_the_excerpt( $post ); // When the post excerpt has been set explicitly, then it has priority. $amt_excerpt = sanitize_text_field( amt_sanitize_description( $post->post_excerpt ) ); Long story short, it tries all the way down to “read post content” to find proper data. But data is not there, since at all times wordpress thinks current page is /qa/ base page. I’ve skimmed through this QA forum and found a lot of problems […]
Try this: https://gist.github.com/rahularyan/dff854b34e1513802247
Yes its is.
This is why we have passwords. Login is “public” part, password is “private” part. You should at all times feel confident disclosing logins. If you are afraid of bruteforce attack or similar, use “limit login attempts” plugin or others. If you think passwords are not good enough, if you don’t trust your users will treat them right – use 3rd party authentification systems, AnsPress supports “WordPress Social Login” and it works great. Usually, Facebook security is not worse than what you can offer.
Most of slugs can be changed from AnsPress option page. You can also try 2.4 beta.
Already answered, please search.
All of your question have been answered many times here, kindly search. Also new version 2.4 have an option to toggle profile from AnsPress option.
Every data which is related to AnsPress, like taxonomy, terms, posts, options, db tables etc..