tôi không biết cách tạo ra giao diện như trang này: https://anspress.net/questions/ask/
Mong muốn có 1 video hướng dẫn
Hi,
I just want to ask if there’s anyway to edit the layout of sub categories under question category?
Is possible to allow users answering a question to upload docs, PDFs, Excel files? If so, is there a setting or does it require custom code requirement?
Hi,
I just installed anspress-question-answer and the “Notifications” toggle features are activated. Despite this when a question is created no notifications are sent to users. Is there a specific setting to make so that all users receive a notification when a question is approved? For information I use WordPress 6.3.1 without BuddyPress
Regards
How to search for questions and answers?
The first picture shows that there is already a problem
Didn’t find it, please look at the second image
Is it set up incorrectly? Or is there something wrong with it?
Why user with Anyone not able to see the Question
While a user having Worepress ID able to see the Question ?.
In einer Welt, in der Handys zu einem unverzichtbaren Bestandteil unseres täglichen Lebens geworden sind, haben sich auch die Möglichkeiten zur Individualisierung dieser Geräte weiterentwickelt bei https://klingeltonkostenlos.de/. Eine besonders auffällige Form der persönlichen Note ist der Handy-Klingelton, der längst nicht mehr nur dazu dient, Anrufe anzukündigen. Heutzutage sind Klingeltöne zu einer kreativen Ausdrucksform geworden und spiegeln die Persönlichkeit sowie den individuellen Geschmack ihrer Besitzer wider.
Hi.
Fatal error: Uncaught Error: count(): Argument #1 ($value) must be of type Countable|array, string given in /home/-/public_html/wp-content/plugins/anspress-question-answer/addons/tags/tags.php on line 150
in line 150:
<code>$ap_max_num_pages = ceil( count( $tags_rows_found ) / $per_page ); </code>
$tags_rows_found
is expected to be an array or an object that implements Countable
, but it is getting a string instead.
The 'fields' => 'count'
argument suggests that $found_query->get_terms()
should return an integer representing the number of terms found matching the criteria, not an array, then the count()
is redundant and incorrect in this context.
So line 150 must be:
<code>$ap_max_num_pages = ceil( $tags_rows_found / $per_page ); </code>