Featured Member With Banner

lcssurf

Member
Hello guys, I did some changes in featured_member.html to show the website's banner. Yes, that works. But, that works only on the home page, the others pages shows just the title, could some help me plz?

This is my featured_member.html
HTML:
<div class="featured row">
    <img alt="featured" src="skins/parabola/img/Featured/featured.gif" class="destaque">
        <div class="left screen1">
          {$featured_member_screenshot}
        </div>
    <h4 class="TitleFeatured"><a href="{$url}" onclick="out(this,'{$username}');">{$title}</a></h4>
    <a href="{$url}" onclick="out(this,'{$username}');">{$banner}</a>
    <br class="cl"/>
</div>
 

Attachments

Basti

Administrator
Staff member
Featured member does not include banner/mp4 management, so {$banner} is wrong ( that is used on the rankings ) and actually not works, but it takes the last member on the page and displays their banner

So, in this file you got to seup the img tag yourself and use {$banner_url} in the src instead

Next version will fix this so your current stuff would work
 

lcssurf

Member
Featured member does not include banner/mp4 management, so {$banner} is wrong ( that is used on the rankings ) and actually not works, but it takes the last member on the page and displays their banner

So, in this file you got to seup the img tag yourself and use {$banner_url} in the src instead

Next version will fix this so your current stuff would work
That works perfectly! Thank You!
 
Top