Can’t have the ask question page to display?

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 .

AnsPress Pages

Don’t worry we are here for help 🙂 Is there a PHP error ? (install query monitor plugin to check if there is any error)

Can’t have the ask question page to display?

@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.

It doesn’t seem to be working for me. Can’t input a title.

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; }

AnswerBox show hero section only for non-logged in

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(); ?>

Disable edit of user profile

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.

How to get it working?

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.

AnsPress

Did you checked document section ? http://anspress.io/documents/

Can’t have the ask question page to display?

To show the ASK page Menu in your site Navigation go to your wp-admin Dashboard go down and hover on Appearance Menu then Select Menus. Look up to find AnsPress Pages. Click ASK and then add to menu then save. Hope it will help.

What is a “Questions” Page and “Answers” page?

Rahul are you there? How do I added all those pages to appear on my site, I see there is no any given shotcode to put on the pages only [anspress]. So, I’m confused ?