What happens is when you click to quote, you are presented with a blockquote of the quote (obviously) but when you start typing your reply, you are WITHIN the block quote and thus, on submitting the post your reply is contained inside the blockquote.
I have tweaked includes/views/editor.php line 34 thus:
from
$threadcontent = '<blockquote><div class="quotetitle"><i>'.__('Quote from', 'asgaros-forum').' '.$display_name.' '.sprintf(__('on %s', 'asgaros-forum'), $this->format_date($text->date)).'</div><i>'.$text->text.'</blockquote>';
to:
$threadcontent = '<p><br><hr><blockquote><div class="quotetitle"><i>'.__('Quote from', 'asgaros-forum').' '.$display_name.' '.sprintf(__('on %s', 'asgaros-forum'), $this->format_date($text->date)).'</div><i>'.$text->text.'</blockquote><hr></i><br><br>';
So I’ve added a few line breaks and a horizontal line to split the quote from the reply text. Seems to work a bit better now.
Is there a way to make this blockquoted text into italics AND gray text please? I’ve tried to do this myself but for some reason (probably css) my font colours and italics are ignored.
thanks for the reply.
R