Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to customize reply insert format in specific forum?


  • Julia
    Participant

    @sub0810

    Topic insert format in specific forum can change using following code.
    For example, Forum post=1000,1300

      if( is_single(1000) ){  
            echo 'Baseball rule';     
            return;
       }elseif( is_single(1300) ) {           
            echo 'Football rule';     
            return;
        }
    

    Then how can I customize reply insert format in specific forum?
    For example, Forum post=1000,1300

    ‘reply insert format’ in content-single-topic.php .

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

  • Robin W
    Moderator

    @robin-w

    if the reply is 1500 and the topic it belongs to 1000 then

    $reply_topic_id = bbp_get_reply_topic_id(1500)
    if( $reply_topic_id == 1000 ){  
            echo 'Baseball rule';     
            return;

    Julia
    Participant

    @sub0810

    Thank you for your advice.

    Your code works well.

    I do appreciate it every time.


    Robin W
    Moderator

    @robin-w

    🙂

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