Looking for this addon???

Unistic

Member
Sorry, this was the only place I think I could ask it.


I say it before i purchased xenforo now I can't locate it.


I'm looking for the add-on that puts a welcome/about message in the same block as the LOGIN/REGISTER button?

If you know where its located at please send me the link.


Thanks!!!
 
Are you looking for something similar to what's by my login/register button (see here)? If so, just edit the sidebar_visitor_panel template.
Find <div class="section loginButton"> and add your text within that tag; for example:
Code:
<div class="section loginButton">     
    <div class="secondaryContent">
<h3 style="text-align:center;">Why join?</h3>
<ul>
<li>Follow your <a href="http://www.voiceradio.us/forums/artist-discussion.7/">favorite artists'</a> updates</li>
<li><a href="http://www.voiceradio.us/forums/song-discussion.8/">Discuss music</a> with fellow fans</li>
<li><a href="http://www.voiceradio.us/forums/suggest-a-song.38/">Suggest new music</a> to be added to the radio station</li>
<li>...and more!</li>
</ul>
        <label for="LoginControl" id="SignupButton"><a href="{xen:link login}" class="inner">{xen:phrase sign_up_now}</a></label>
    </div>
</div>
(note: you can also use phrases instead of typing the text into the template like I did)
 
Top Bottom