I Creating a question and it is not shown in the activity fee, How to show my questions and answers in buddyboss activity fee?
I am trying to change the colour of the order by and tags buttons from green to the colour theme of my site.
Green doesn’t match it looks really odd.
Hello, tell me how can I make subcategories so that they correspond to certain selected categories?
Hello,
We have this plugin installed and really like it, but we have questions about its implementation.
- When someone registers to ask/answer a question, it seems to force them to set up as a user on our site. Is there another way to do this? We’d like to not have random people be users on our main site.
- is it possible to remove the Tag option? It does not seem to be working correctly.
Thank you in advance for any pointers. We’d also like to make a connection with someone who is very used to working with this plugin and who knows how to modify the pages, etc.
Niall.
Why have you stopped working on this? it’s such a great plugin. I really like the plugin but see that it’s not been updated, also there is no support for schema?
How do I fix the error of my Ask a question page displaying more than one field each? Question Title appeared three times, category three and even the input box appeared 3. Thanks.
Hi,
is there any way to show the user profile in an normal page instead the autor remplate?
Kind regards,
Ole
Hi, I added this code to the theme’s function.php but not of any use. Can you help with choosing category automatically
<?php
/**
* Filter ask button link to append category id in single category.
*
* @param string $link Ask page link.
* @return string
*/
function my_ap_ask_btn_link( $link ) {
if( ap_current_page( ‘category’ ) ) {
$question_category = get_queried_object();
$link = add_query_arg( [ ‘question_form’ => [ ‘category’ => $question_category->term_id ] ], $link );
}
return $link;
}
add_filter( ‘ap_ask_btn_link’, ‘my_ap_ask_btn_link’ );