Hi Please I need help with this issue as it is currently being experienced in the current version of Anspress. I actually prefer a fix for this than changing my SEO plugin. Not everyone would be willing and ready to go switch a plugin they have become used to for many years. Thanks
Hello Elysia, AnsPress will work with every theme as it output its content using a shortcode. Please get in touch with theme developer regarding this query.
Hello @marnotrawny, BP integration was last updated in 2.0 version. I am not getting enough to to update integration. But I will add this to my task list. Thanks for reporting.
Image related to above comment.
Found Custom CSS in two places “Visual Composer” and “VC Extensions” and I assume it doesn’t matter which one I use. When I pasted in your code I got two errors: Heading (h1) should not be qualified Element (h1.entry-title) is overqualified Just use .entry-title without element name use of !important Thank you.
Your request is very specific and IMHO Anspress don’t need it, probably only few people or less will ever use it. That said, You can do it Yourself, it is fairly simple. You need to add new folder (name it anspress) to Your WordPress theme, like this your_theme/anpress/ To that folder You need to copy login-signup.php file from Your Anspress plugin dir (anspress-question-answer/theme/default/login-signup.php) or download it from here (right click and save file as). Now there is time to edit that file, and there are two options: Ugly one – just delete everything but leave <?php at beginning of the file. Less ugly – edit if statement from beginning to add new condition. In case of second option now if user is not logged in and You don’t Allow anonymous, then login/register form will be shown. So we need to also check for “Anyone can register” switched off. Before <?php if(!is_user_logged_in() && !ap_opt('allow_anonymous')): ?> After <?php if(!is_user_logged_in() && !ap_opt('allow_anonymous') && get_option('users_can_register')): ?> After edit if user can register, then form will be visible, but if he can’t, then form will be hidden. That’s it.