Keith Ho
95 Reputation

Answers

My solution to this: [apcode language="php"] <div id="post-<?php the_ID(); ?>" class="ap-single-vote" apid="<?php the_ID();?>" ap="question"><?php...

View Question
0 Votes Selected

My solution is adding this: [apcode language="php"] <?php    global $metas;    if ( ap_post_have_terms( $question_id ) ) {    $metas['categories'] = ap_question_categories_html(array(...

View Question
0 Votes Selected

I think you can try look into this file: templates/single-question.php

View Question
0 Votes

My solution to this: [apcode language="php"] <?php        $user_args = array(         'ap_query' => true,         'role__not_in' => [ 'administrator',...

View Question
0 Votes Selected

You may try to insert this in your child theme function.php. However, its input type will be replaced by textarea. [apcode language="php"] function my_custom_title_field( $form ) { $form['fields']['post_content']...

View Question
1 Vote Selected