Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
Oct 18, 2020 6:03 am
Hello all
how can i add a important text (distancing from the meaning of the user comments) below the comment section?
Thanks in advance
Orakel
5 Replies
Oct 21, 2020 3:02 pm
Hello Asti
I mean a Disclaimer that i can put at the bottom of the comments section.
How and where to add it. I am sure this is important at comments (maybe) ^^
At the moment i have no screen in my hands.
I tried this code, but it is not working at all:
function comment_after_policy_field() { echo '<p>Here is my Text</p>'; }
add_action('comment_form_after_fields', 'comment_after_policy_field');
Orakel
Oct 22, 2020 6:24 pm
That was working, thank you very much dear Asti =)
function comment_after_policy_field() {
echo '<p>Das ist mein zweiter Text</p>';
}
add_action('wpdiscuz_after_comments', 'comment_after_policy_field');