News:

We have *Free* SMF 2.0 & 2.1 Themes for Download and Support!

Main Menu

Recent Topics

Members
Stats
  • Total Posts: 10,737
  • Total Topics: 1,372
  • Online today: 229
  • Online ever: 879
  • (Jan 21, 20, 05:49:15 PM)
Users Online
Users: 0
Guests: 180
Total: 180

Can't Reply

Started by Sc00bz, Jul 15, 11, 01:06:49 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Sc00bz

Can't reply to any topic in New Themes and Theme News you might want to allow comments or remove the like "write comment" from this page http://www.jpr62.com/theme/index.php.

Now my real reason for being here, you should update the theme or post something in Intimidator]theme to tell everyone to replace:
echo ' »';
with
echo ' »';

ZarPrime

Sc00bz,

Welcome to the CripZone.

First of all, that board is a "Read Only" board because it is for announcements of new themes.  It is not for support.

Secondly, on the code you posted, you'll have to be a little more specific on what you're talking about and where the code is located so that we can check it.  Is this part of the linktree code or what?  What file is it located in, what line is it on?

ZarPrime

Crip

#2
If the Thheme does not have in the Title: sufix: 2.0 then it's not 2.0 Fully Updated... even\though it's useable!

If they want it , here is the Default Link+tree coding::


// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree($force_show = false)
{
global $context, $settings, $options, $shown_linktree;

// If linktree is empty, just return - also allow an override.
if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show))
return;

echo '
<div class="navigate_section">
<ul>';

// Each tree item has a URL and name. Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
echo '
<li', ($link_num == count($context['linktree']) - 1) ? ' class="last"' : '', '>';

// Show something before the link?
if (isset($tree['extra_before']))
echo $tree['extra_before'];

// Show the link, including a URL if it should have one.
echo $settings['linktree_link'] && isset($tree['url']) ? '
<a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>';

// Show something after the link...?
if (isset($tree['extra_after']))
echo $tree['extra_after'];

// Don't show a separator for the last one.
if ($link_num != count($context['linktree']) - 1)
echo ' »';

echo '
</li>';
}
echo '
</ul>
</div>';

$shown_linktree = true;
}
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.