TP-Docs
HTML5 Icon HTML5 Icon HTML5 Icon
TP on Social Media

Recent

Welcome to TinyPortal. Please login or sign up.

April 16, 2024, 07:37:03 PM

Login with username, password and session length
Members
  • Total Members: 3,885
  • Latest: Growner
Stats
  • Total Posts: 195,161
  • Total Topics: 21,219
  • Online today: 106
  • Online ever: 3,540 (September 03, 2022, 01:38:54 AM)
Users Online
  • Users: 0
  • Guests: 62
  • Total: 62

Bug in Thema

Started by darkness_black, December 05, 2008, 03:06:08 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

darkness_black

Link to my site: http://www.blackgsm.com.br
SMF version: 1.1.7
TP version: TP ver. here
Theme name and version: Theme name here
Mods installed: yes: Custom Tab,     SimplePortal, Auto Embed Video/Audio Clips e  SimplePortal - Brazilian Portuguese.
Related Error messages: Error message here

Hello to everybody very happy with this new Thema, erm but some areas of SMF it is with my bug in subforum as it is misaligned, they could see what happens and give me a solution if any.
I ask that when responding please send me a personal message, that I miss in the middle of the topics.
Look.

G6Cad

Please read the Posting Guidelines.html

You MUST fill in the info we ask you in our posting guide

IchBin

Put a topic/post in each of the boards that are empty. I think if the board is empty, it leaves out a table cell or something.

darkness_black

Ready modified my topic.

IchBin

Yes, but you didn't let us know what you've tried.... And please don't expect us to PM you. We have enough to do than to do support via PM's. Keeping the answers in the boards will help others. Looking at your site, I do not see any problems.

darkness_black

   
Well actually he is with the Forum menu above the menu bar and I would like it to be next to the home menu, as shown in the picture you posted.
I've changed manually in index.templante, but only served the code that I put to the default. This is the code that I added.

// Here we go some new button.
   echo'
            <td valign="top" class="maintab_' , $current_action == 'Google' ? 'active_back' : 'back' , '">
               <a href="http://google.com.br">' , 'GOOGLE' , '</a>             
            </td>';


They said that I needed to know what is the code for this theme.
And after unsuccessfully installed with the tab.mod but neither worked.
I wonder how you put the FORUM button in the toolbar and menu to the header.

IchBin

What do the other button codes look like?

darkness_black

Well this code that I posted above, it creates another tab on the menu, but in the version defalt (standard version of SMF)
But with this Thema alienation does not accept and does not appear the new button "FORUM". And I tried in every way I could.
Did you not have the code you insert new button in the menu bar?

G6Cad

Cn you copy the button tab code for us from alienation (from your index.template.php you use in alientation )

Copy the home, forum, help and calendar tab button code so we can see how the other tabcode looks like and not the one you posted before.

darkness_black

// Show the start of the tab section.
echo '
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="amaintab_back" width="29%">&nbsp;</td>';

// Show the [home] button.
echo  '
<td class="amaintab_' , $current_action == 'home' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '">' , $txt[103] , '</a>
</td>';

      // Aqui vai aparecer um novo botão, FORUM
   echo $tab1, $ca== 'home' ? '1' : '2' , '"><a href="http://www.blackgsm.net/index.php?action=forumt">' , 'FORUM' , '</a></td>';

// Show the [help] button.
echo '
<td class="amaintab_' , $current_action == 'help' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=help">' , $txt[119] , '</a>
</td>';

// How about the [search] button?
if ($context['allow_search'])
echo  '
<td class="amaintab_' , $current_action == 'search' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=search">' , $txt[182] , '</a>
</td>';

// Is the user allowed to administrate at all? ([admin])
if ($context['allow_admin'])
echo '
<td class="amaintab_' , $current_action == 'admin' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=admin">' , $txt[2] , '</a>
</td>';

// Edit Profile... [profile]
if ($context['allow_edit_profile'])
echo  '
<td class="amaintab_' , $current_action == 'profile' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=profile">' , $txt[79] , '</a>
</td>';

// Go to PM center... [pm]
if ($context['user']['is_logged'] && $context['allow_pm'])
echo  '
<td class="amaintab_' , $current_action == 'pm' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=pm">' , $txt['pm_short'] , ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</a>
</td>';

// The [calendar]!
if ($context['allow_calendar'])
echo  '
<td class="amaintab_' , $current_action == 'calendar' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=calendar">' , $txt['calendar24'] , '</a>
</td>';

// the [member] list button
if ($context['allow_memberlist'])
echo '
<td class="amaintab_' , $current_action == 'mlist' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=mlist">' , $txt[331] , '</a>
</td>' ;


// If the user is a guest, show [login] button.
if ($context['user']['is_guest'])
echo  '
<td class="amaintab_' , $current_action == 'login' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=login">' , $txt[34] , '</a>
</td>';


// If the user is a guest, also show [register] button.
if ($context['user']['is_guest'])
echo  '
<td class="amaintab_' , $current_action == 'register' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=register">' , $txt[97] , '</a>
</td>';


// Otherwise, they might want to [logout]...
if ($context['user']['is_logged'])
echo  '
<td class="amaintab_' , $current_action == 'logout' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '">' , $txt[108] , '</a>
</td>';

// The end of tab section.
echo '
<td class="amaintab_back" width="69%">&nbsp;</td>
</tr>
</table>';