Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author bonnerl

    (@bonnerl)

    Hi Weilo,

    To display the date above the message you would move $output .= $date; (line 602) to be below the following code at line 540-542.

    // See if we should display who posted it
    if ( $limit == false )
    	$output .= $from;

    The resulting code should look like,

    // See if we should display who posted it
    if ( $limit == false )
    	$output .= $from;
    
    // Add date to output.
    $output .= $date;

    Hope that helps!

    Thread Starter weilo

    (@weilo)

    Hi Bonnerl,

    thank you so much for your help, that did it!

    Great Plugin!
    Kind regards
    Daniel

    PS: the code line numbers were different in my php file: 637 and 576-578.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Date above post’ is closed to new replies.