i need to hide the button insert image in my ask question page in my website.please guide me
video not posting when using front end editor for posting in add comments section
Hi,
I use The7.4 wordpress template.
AnsPress plugin works well except of one thing: sidebar on question detail page has chaotic content. The same problem is in footpage widget…
https://prnt.sc/mpbde7
https://prnt.sc/mpbehk
Any advice?
Tnaks, karel
Hello, I am using anspress on my website. i have checked the google structured markup test:
https://search.google.com/structured-data/testing-tool/u/0/#url=https%3A%2F%2Fvpn-anbieter-vergleich-test.de%2Fhilfe%2Ffragen%2Fkann-ich-vpn-auch-auf-einer-vavoo-streambox-nutzen%2F
Warning on ‘Question’ type: “Missing a QAPage markup item on page to which this item should be associated.”
How could associate it? Could you help me?
Hi!
Is it possible to trigger a FCM push notification with the notification API service of AnsPress?
Regards, dom
Hello. Thanks for the wonderful plugin, but recently I came across a problem. I’m trying to integrate a profile from AnsPress to WP Recall.
I tried using the shortcode [anspress page=”user”] but the shortcode only displays the anonymous profile.
The solution does not work:
Add it before “get_header()”:
$curr_user = wp_get_current_user();
set_query_var( ‘ap_page’, ‘user’);
set_query_var( ‘author_name’, $curr_user->user_login);
Maybe I’m doing wrong? I add the code to the template of the page where the shortcode is used, for example in page.php
In my case, it looks like this:
<?php
$curr_user = wp_get_current_user();
set_query_var( ‘ap_page’, ‘user’);
set_query_var( ‘author_name’, $curr_user->user_login);
get_header();
?>