then it should be the ask.php within wp-content/plugins/anspress/theme/default or within your theme if you are using a customized one
How can i display it? It says have no question when i try access http://localhost/theme/my-own-question-page/category/
could you send me a url to the how to ask page, it might be helpful
log error would help, it might be a redirect loop so try first to update your permalinks and save, even without any changes just press the save button.
it would be great to have such functionality. one thing that makes opensource growing is people contribution, what i mean here is Aryan and his team did a great work (they have been doing great when they were working on the question2answer project too), they made anspress extensible so we as COMMUNITY have to give back and develop, implement some of people request. please share what you have i’m sure there are GOOD coders and talented designers outthere, who are following this project (which have potential to be one of the most used plugins). it will not be fair if we ask aryan and team to work on every single bug and all requested features please Contribute.
Hello Jon, This is not available at the moment, but this feature has been requested many time and I am willing to implement it. After completing current roadmap, I will update you about this request. Cheers!
Please post the last error log.
No, its not. working on it.
Simply follow this steps: create a home.php in your theme and paste this PHP codes: global $question_categories, $ap_max_num_pages, $ap_per_page; $paged = get_query_var('paged') ? get_query_var('paged') : 1; $per_page = ap_opt('categories_per_page'); $total_terms = wp_count_terms('question_category'); $offset = $per_page * ( $paged – 1) ; $ap_max_num_pages = $total_terms / $per_page ; $cat_args = array( 'parent' => 0, 'number' => $per_page, 'offset' => $offset, 'hide_empty' => false, 'orderby' => 'count', 'order' => 'DESC', ); /** * FILTER: ap_categories_shortcode_args * Filter applied before getting categories. * @var array * @since 1.0 */ $cat_args = apply_filters('ap_categories_shortcode_args', $cat_args ); $question_categories = get_terms( 'question_category' , $cat_args); include ap_get_theme_location('categories.php', CATEGORIES_FOR_ANSPRESS_DIR); And make sure your home page is set to static.