TheCripZone SMF Themes Site

All Things Public => Feedback Board => Topic started by: Sc00bz on Jul 15, 11, 01:06:49 PM

Title: Can't Reply
Post by: Sc00bz on Jul 15, 11, 01:06:49 PM
Can't reply to any topic in New Themes and Theme News (http://www.jpr62.com/theme/index.php/board,20.0.html) you might want to allow comments or remove the like "write comment" from this page http://www.jpr62.com/theme/index.php (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 (http://www.jpr62.com/theme/index.php/topic,454.0.html) to tell everyone to replace:
echo ' »';
with
echo ' »';
Title: Re: Can't Reply
Post by: ZarPrime on Jul 15, 11, 02:04:25 PM
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
Title: Re: Can't Reply
Post by: Crip on Jul 15, 11, 04:18:52 PM
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;
}