AskBug 3.0.0-beta is available for download

can i see demo for beta ?

AP 4: Can not add a URL to a word

Today i checked the CSS from my theme only i can not find the problem 🙁

AskBug Theme for Anspress 4.x doesn’t allow you to set the homepage to a separate static page

Hi Rahul – I didn’t mean the base page I meant the Home page. I want to set a completely new home page. We want a different custom page to be set as the homepage. How can we do that?

AskBug Theme for Anspress 4.x doesn’t allow you to set the homepage to a separate static page

Hello Frank AnsPress prevents setting base page as front page. If you set base page as home page then our permalink will not work. If you want to show AnsPress in home then simply create differnt page with anspress shortcode and select it for home page.

Large query against all wp_posts and wp_ap_qameta for no apparent reason.

Hello Frank, This query runs whenever a question or questions are fetched. This query must run on category page. As there are list of questions need to be shown on that page. This query is called by WP_Query and is altered for AnsPress needs.

Compatibility with Ultimate Member

Hello Frank, No, nothing like that is planned yet. We will think about it.

Featured image field for questions

What I did so far : Ok so I found a way to add featured images, also called ‘thumbnails”, in Anspress questions, by doing the following : Added this code to my theme’s functions.php : add_action(‘init’, ‘my_custom_init’); function my_custom_init() { add_post_type_support( ‘question’, ‘thumbnail’ ); On the Anspress file question.php, added this to display the thumbnail : <?php if (has_post_thumbnail()) { // display the featured image ?>                            <div id=”thumbnailquestion”><?php the_post_thumbnail(); ?> It works but the admin has to upload images in the backend for them to show has featured images. What I’d like to do now : I’d like users (and not only the admin) to be able to upload featured images too (the images uploaded through the attachment box would be automatically set as featured images).   How I think it could be done : I Imagine there’s something to be changed in the upload form https://github.com/anspress/anspress/blob/b2b86fc8f91b6c96a065ffbf14212e7967610fb9/includes/upload.php but I can’t exactly figure out what. I’ve been trying lots of things myself :/ And yet I’m sure it’s not that hard !   Thanks for your help !

How to add rating system in answer form in Anspress?

You can add your rating code in answer.php (and create a folder in yourtheme/anspress to store it so that it resists new updates)