Skip to:
Content
Pages
Categories
Search
Top
Bottom

Reply Link as a Button on the Bottom.


  • Soul
    Participant

    @soulkitchen

    WP 4.5
    Theme: Twenty Sixteen
    WebSite: https://hatunn.com

    Hi,
    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

    Reply Link as a button on the bottom.

Viewing 11 replies - 1 through 11 (of 11 total)

  • Soul
    Participant

    @soulkitchen

    Any idea?


    Pascal Casier
    Moderator

    @casiepa

    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.


    Soul
    Participant

    @soulkitchen

    Thanks for your research. Im also still searching. Hope some other bbpress lovers will find any solutions.

    Cheers
    🙂


    Soul
    Participant

    @soulkitchen

    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.


    Robkk
    Moderator

    @robkk

    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();
     }
    }

    Soul
    Participant

    @soulkitchen

    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


    Robkk
    Moderator

    @robkk

    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' );

    Soul
    Participant

    @soulkitchen

    Hi Robkk.
    This works fine. Thank you. Send me your paypal mail. 🙂

    Thanks a lot again.

    🙂


    Robkk
    Moderator

    @robkk


    Soul
    Participant

    @soulkitchen

    Thanks again.

    🙂


    Robkk
    Moderator

    @robkk

    no problem 🙂

Viewing 11 replies - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.
Skip to toolbar