Reply Link as a Button on the Bottom.
-
WP 4.5
Theme: Twenty Sixteen
WebSite: https://hatunn.comHi,
I searched a week along on different portals but couldnt find any tutorial or solution to generate a button instead of the reply link. Also i was searching to put the reply link to the bottom of the replied message. Seems to be I am the only one who needs this.I activated the: Reply Threading -> Enable threaded (nested) replies 5 levels deep.
So the reply link is on the top place.
I need to put the reply link to the bottom after the message.
People (most women) are confused where to click to reply.
I want it to the bottom right after the message. And if possible as a button like on the screenshot.Now the one million Dolar question.
How can I do this? 🙂Thanks for your assistance in before.
Best Regards
-
Any idea?
Hi,
For sure it’s not just a standard setting … Maybe with CSS or adding an extra one at the bottom.
If I find something in the next days/weeks, I’ll post it back here.
Pascal.Thanks for your research. Im also still searching. Hope some other bbpress lovers will find any solutions.
Cheers
🙂Anyone who has find something? I did not find any info about it.
Can any one help me on this? I will pay for the code.
Maybe try something like this I guess. Place this php code snippet into your child themes functions.php file or use a plugin like functionality.
add_action( 'bbp_theme_after_reply_author_details', 'rkk_add_reply_link' ); add_action( 'bbp_theme_after_topic_author_details', 'rkk_add_reply_link' ); function rkk_add_reply_link() { if ( is_user_logged_in() ) { echo bbp_get_reply_to_link(); } }
Thank you Robkk for your reply.
This works fine.
One question. As i can see it is only after author details. Is it possible to put it after the reply either? like on the screenshot.
What will be the action code for this section?Thanks
Best regards
What will be the action code for this section?
Use these two hooks instead.
add_action( 'bbp_theme_after_reply_content', 'rkk_add_reply_link' ); add_action( 'bbp_theme_after_topic_content', 'rkk_add_reply_link' );
Hi Robkk.
This works fine. Thank you. Send me your paypal mail. 🙂Thanks a lot again.
🙂
Thanks again.
🙂
no problem 🙂
- You must be logged in to reply to this topic.