[Resolved] BBpress reply numbering fix

Home Forums Support [Resolved] BBpress reply numbering fix

Home Forums Support BBpress reply numbering fix

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #205703
    Max

    Tom

    The native BBpress installation does not have consecutive numbering for replies.

    I have tested the following fix in a GP child theme and it works:

    In the (bbpress) loop-single-reply.php file replace:

    
    <a href="<?php bbp_reply_url(); ?>" class="bbp-reply-permalink">#<?php bbp_reply_id(); ?></a>

    with

    
    <a href="<?php bbp_reply_url(); ?>" class="bbp-reply-permalink">#<?php bbp_reply_position(); ?></a>

    I am already running my own functionality plugin and I really don’t want to also run a child theme to incorporate this fix.

    Is there anyway to incorporate this fix into my functionality plugin php rather than using a child theme.

    Thanks in advance for your kind assistance.

    Regards

    Max

    #205774
    Tom
    Lead Developer
    Lead Developer

    I don’t think that would be possible as you’re required to overwrite a template file, which requires a child theme.

    You can always ask the bbPress devs if they have any ideas 🙂

    #205780
    Max

    You can always ask the bbPress devs if they have any ideas

    LOL…

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.