XF 1.4 Message and Thread Title

Admin CP -> Appearance -> Templates -> message

Add the red code:

Rich (BB code):
		<xen:hook name="message_content" params="{xen:array 'message={$message}'}">
		<xen:if is="{$thread.title}">
		<div style="border-bottom: 1px solid #dddddd; padding-bottom: 5px; margin-bottom: 5px;">
			{$thread.title}
		</div>
		</xen:if>
		<div class="messageContent">		
			<article>
				<blockquote class="messageText ugc baseHtml{xen:if $message.isIgnored, ' ignored'}">
					<xen:include template="ad_message_body" />
					{xen:raw $message.messageHtml}
				</blockquote>
			</article>
			
			{xen:raw $messageContentAfterTemplate}
		</div>
		</xen:hook>
 
Admin CP -> Appearance -> Templates -> message

Add the red code:

Rich (BB code):
        <xen:hook name="message_content" params="{xen:array 'message={$message}'}">
        <xen:if is="{$thread.title}">
        <div style="border-bottom: 1px solid #dddddd; padding-bottom: 5px; margin-bottom: 5px;">
            {$thread.title}
        </div>
        </xen:if>
        <div class="messageContent">       
            <article>
                <blockquote class="messageText ugc baseHtml{xen:if $message.isIgnored, ' ignored'}">
                    <xen:include template="ad_message_body" />
                    {xen:raw $message.messageHtml}
                </blockquote>
            </article>
           
            {xen:raw $messageContentAfterTemplate}
        </div>
        </xen:hook>

Thanks alot Jake it works :)
 
Admin CP -> Appearance -> Templates -> message

Add the red code:

Rich (BB code):
        <xen:hook name="message_content" params="{xen:array 'message={$message}'}">
        <xen:if is="{$thread.title}">
        <div style="border-bottom: 1px solid #dddddd; padding-bottom: 5px; margin-bottom: 5px;">
            {$thread.title}
        </div>
        </xen:if>
        <div class="messageContent">     
            <article>
                <blockquote class="messageText ugc baseHtml{xen:if $message.isIgnored, ' ignored'}">
                    <xen:include template="ad_message_body" />
                    {xen:raw $message.messageHtml}
                </blockquote>
            </article>
         
            {xen:raw $messageContentAfterTemplate}
        </div>
        </xen:hook>
How could I do it so that the red code is not displayed in responsive view? I've tried to figure it out using Brogan's guides but I can't get my head around it? I have the thread title displaying next to the date and time in a post, but I want to hide the thread title in responsive view.

To do this I simply added {$thread.title} at the end of this line:
Code:
<a href="{xen:link threads/post-permalink, $thread, 'post={$post}'}" title="{xen:phrase permalink}" class="datePermalink"><span class="DateTime">{xen:datetime {$post.post_date}, 'absolute'} - {$thread.title}</span></a>

Spring Specials at Aquaria SA   Marine Aquariums South Africa.webp

Thanks. :)
 
@viper357

Surround your code with a block with a class, such as:

Rich (BB code):
<span class="myExtraThreadStuff">

</span>

Then add CSS to hide it in Responsive mode:

Admin CP -> Appearance -> Templates -> EXTRA.css

Rich (BB code):
.Responsive .myExtraThreadStuff
{
	display: none;
}
 
Top Bottom