Janob, This was a bug. I fixed it please download from github and deactivate AnsPress and again activate it. this will solve your issue.
So social login is being deprecated? That’s sad, as most my users are from social media. Here’s an idea: If logged in from Twitter, tweet the person a new answer has been added If logged in from Google+, mention their user (like YouTube comment) that an answer is available I’m sure Facebook still gives a correct email, right?
Okey, Janob simply do this: Create a new directory in active theme (not child theme) as anspress now copy base.php file to newly created folder. Now pastes this code to base.php: <?php dynamic_sidebar( 'ap-top' ); ?> <div id="ap-lists" class="clearfix"> <?php ap_questions_tab(get_permalink()); ?> <?php if ( $questions->have_posts() ) : ?> <div class="question-list"> <?php /* Start the Loop */ while ( $questions->have_posts() ) : $questions->the_post(); global $post; include(ap_get_theme_location('content-list.php')); endwhile; ?> </div> <?php ap_pagination(); ?> <?php else : include(ap_get_theme_location('content-none.php')); endif; ?> </div> <!– Here goes your custom sidebar, add styles by yourself –> <div class="my-sidebar"> <?php dynamic_sidebar('my-custom-sidebar' ); ?> </div> and now paste this code in your WordPress theme functions.php add_action( 'widgets_init', 'mysite_widgets_positions' ); function mysite_widgets_positions(){ register_sidebar( array( 'name' => __( 'My Custom Sidebar', 'ap' ), 'id' => 'my-custom-sidebar', 'before_widget' => '<div id="%1$s" class="ap-widget-pos %2$s">', 'after_widget' => '</div>', 'description' => __( 'Widgets in this area will be shown in questions page sidebar.', 'ap' ), 'before_title' => '<h3 class="ap-widget-title">', 'after_title' => '</h3>', ) ); }