XF 2.0 Changing order of user banners and user titles

TheTimeRanger

New member
Hi everyone, I have been scratching my head on this one.

Is it possible (either through settings or through changing the template files) to change the order of the user banners and user titles.
Like it the case I present in the attached file.

Thanks!
 

Attachments

  • Screen Shot 2018-07-30 at 09.09.14.webp
    Screen Shot 2018-07-30 at 09.09.14.webp
    49 KB · Views: 51
Try this mate.

Search in template: message_macros

Look for this part of the code
Code:
            <xf:usertitle user="$user" tag="h5" class="message-userTitle" banner="true" itemprop="jobTitle" />
            <xf:userbanners user="$user" tag="div" class="message-userBanner" itemprop="jobTitle" />

And just swap them around adding userbanners code above user title.
like so
Code:
            <xf:userbanners user="$user" tag="div" class="message-userBanner" itemprop="jobTitle" />
            <xf:usertitle user="$user" tag="h5" class="message-userTitle" banner="true" itemprop="jobTitle" />
 
Top Bottom