Keith Ho
95 Reputation

Reputations

Answer was selected as best
January 19, 202210
Posted an answer
About vote button

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

January 19, 20225
Answer was selected as best
January 19, 202210
Commented on a post

You may try wp_editor() if you want to keep the input as an editor https://developer.wordpress.org/reference/functions/wp_editor/ I am still trying to implement this function, if you got the answer, please...

January 19, 20222
Received an upvote
January 19, 202210
Asked a question
About vote button

I have placed the vote button on the question list item but found it could not work. Is there anything that I have missed inserting in? [apcode language="php"] <div class="ap-display-question-meta">...

January 18, 20222
Answer was selected as best
January 18, 202210
Posted an answer
display question’s category by question id

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(...

January 18, 20225
Posted an answer
Single question page

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

January 18, 20225
Answer was selected as best
January 18, 202210
Posted an answer
user list with reputation

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

January 18, 20225
Posted an answer
Please teach me how to set the placeholder on Description.

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']...

January 18, 20225
Asked a question
display question's category by question id

Hi, I would like to display the category next to the single-question list item.  Is there coding that can display the question's category by question id? Thanks.

January 18, 20222
Asked a question
user list with reputation

Hi, is this code still works for display list of user order by reputation? <?php // Thsi query will order users by reputation by default. $user_args = array( 'ap_query' => true, 'role__not_in'...

November 27, 20212
Asked a question
Where is the user page?

I have installed the plugin, but can't see the user page that display all users. How can I create one?

November 25, 20212
Registered
November 25, 202110