How is the ask question page displayed?

You probably mean this public function register_common_pages() { ap_register_page( 'base', __( 'Questions', 'ap' ), array( $this, 'base_page' ) ); ap_register_page( ap_opt( 'question_page_slug' ), __( 'Question', 'ap' ), array( $this, 'question_page' ), false ); ap_register_page( ap_opt( 'ask_page_slug' ), __( 'Ask', 'ap' ), array( $this, 'ask_page' ) ); ap_register_page( 'edit', __( 'Edit', 'ap' ), array( $this, 'edit_page' ), false ); ap_register_page( 'search', __( 'Search', 'ap' ), array( $this, 'search_page' ), false ); ap_register_page( 'activity', __( 'Activity feed', 'ap' ), array( $this, 'activity_page' ) ); } The ask_page() method executes/outputs actual ask.php.   How/when is it called? Right below the source of ap_register_page (it’s only purpose is fill the $pages field) there is /** * Output current AnsPress page. * @since 2.0.0-beta */ function ap_page() { $pages = anspress()->pages; $current_page = ap_current_page(); if ( is_question() ) { $current_page = ap_opt( 'question_page_slug' ); } elseif ( '' == $current_page && ! is_question() && '' == get_query_var( 'question_name' ) ) { $current_page = 'base'; } if ( isset( $pages[ $current_page ]['func'] ) ) { call_user_func( $pages[ $current_page ]['func'] ); } else { global $wp_query; $wp_query->set_404(); status_header( 404 ); include ap_get_theme_location( 'not-found.php' ); } } How does it get the $current_page slug? get_query_var( ‘ap_page’ ); in ap_current_page() and $new_rules[$slug. ‘ask/([^/]+)/?’] = ‘index.php?page_id=’.$base_page_id.’&ap_page=ask&parent=’.$wp_rewrite->preg_index( 1 ); in rewrites() (on a first glance it looks like it shouldn’t work with changed “ask page” slug, as it’s hardcoded in rewrites, but that’s none of my business currently ^^)   And ap_page() is called in anspress_sc(), which is //Control the output of [anspress] shortcode add_shortcode( […]

How to remove Question Statistics widget?

Hi, Taras. Yep, russian translation is messed up. You may wait few more months until I’ll have time to fix it, or you may fix it yourself and commit it to anspress github. Спросить вопрос is epic indeed.

How can I see all reputation points?

Try this: https://anspress.io/questions/users/

2.4 update Base_page Slug Problem

Has been fixed. Download master.zip from Github. Now you can change base page title from AnsPress option -> pages

How to remove Question Statistics widget?

There is an option in AnsPress options ->layout

Important notice: after updating AnsPress to 2.4

I have changed the page title from ANSPRESS_TITLE to my own custom title. I have also added this new title on Anspress options > Pages > Base page title. But the front-end title of the base page is always just ‘Questions’. My custom title is not showing up. Please let me know what to do.

How get default theme

Read docs carefully, you should copy anspress folder inside your active theme folder.

2.4 Update Timing Problem

I can confirm, dates are wrong. Question was just posted, it is shown “3 hours ago”. It must have something to do with my +3 GMT timezone. I want this fixed as well.