I am having the same error. 🙁
Currently it doesn’t support RTL, but if you can provide translation then I will add RTL styles.
I think that I had encountered a similar problem . Are you on apache or nginx server ? If you are on apache make sure that there is proper write permission on the .htaccess file and if you are on nginx make sure that the configuration file is alright .
Don’t worry we are here for help 🙂 Is there a PHP error ? (install query monitor plugin to check if there is any error)
@David_Laborieux feel free to send me your link, I will help you to solve the issue. Did you installed cache plugin ? if yes please disable it for AnsPress page.
CSS conflict. please add this CSS: #anspress input#title { float: none !important; font-family: arial,helvetica,sans-serif; font-size: 14px; height: auto !important; text-indent: 0; }
Open home.php and replace with this codes: <?php /** * The template for displaying frontpage. * * @package answerbox */ get_header(); ?> <?php if(!is_user_logged_in()): ?> <div class="welcome"> <h1 class="entry-title"><?php _e('Get awesome answers from awesome people.', 'ab') ?></h1> <div class="stats"> <div class="stats-item"> <i class="i-question"></i> <div class="no-overflow"> <strong><?php echo ap_total_published_questions(); ?></strong> <span><?php _e('total questions', 'ab') ?></span> </div> </div> <div class="stats-item"> <i class="i-answer"></i> <div class="no-overflow"> <strong><?php echo ap_total_solved_questions(); ?></strong> <span><?php _e('total solved answers', 'ab') ?></span> </div> </div> <div class="stats-item"> <i class="i-user"></i> <div class="no-overflow"> <?php $users = count_users(); ?> <strong><?php echo $users['total_users']; ?></strong> <span><?php _e('total users', 'ab') ?></span> </div> </div> </div> <div class="welcome-signup"> <div class="container"> <p><?php _e('Join more than 10 million people who use AnswerBox to ask their questions.', 'ab') ?></p> <a href="<?php echo wp_registration_url(); ?> " class="btn btn-default welcome-btn-sign"><?php _e('Sign Up Free', 'ab') ?></a> </div> </div> </div> <?php endif; ?> <div class="container"> <div class="home-blocks"> <div class="row"> <div class="col-md-8"> <?php echo do_shortcode('[anspress]'); ?> </div> <div class="col-md-4"> <?php dynamic_sidebar( 'sidebar-1' ); ?> </div> </div> </div> </div> <?php get_footer(); ?>
Simple and dirty way to achieve this : open includes/class-user.php. find: ap_register_user_page('profile', __('Profile', 'ap'), array($this, 'profile_page')); and comment it.
I cheked your site and got a JS issue: SyntaxError: expected expression, got '<' I hope you have installed cache plugin, please disable it fro AnsPress page.
Did you checked document section ? http://anspress.io/documents/