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/
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.
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 ?
Did you find any website with answerbox demo ?
Please refer to documents for setting AnsPress in home page.
Ok, I will check the issue.