[Theme] Helios Multi (SMF v1.0.5 - 1.1RC2)

Started by bloc, September 22, 2004, 05:55:46 AM

Previous topic - Next topic

philbert

I love the look of this theme but I seem to be missing some of the pod images.
Not all but only the ones that are background to tables.

hxxp:hearnoevilpodcast.com/FORUMS/index.php [nonactive]


beemer

You certainly are !

Try re-uploading just the image gifs to your themes\helios folder\images\pod\etc

You are missing the likes of pod-stat-mid.gif, pod-board-midtop.gif
http://www.bmw7resource.co.uk
SMF 1.1 RC1
MKP 1.1 RC1
Helios Multi RC1
-------------------------------------------------------
http://www.thefishsheadnhorsesarse.co.uk
SMF 1.1 RC2
TinyPortal 0.8.6

philbert

I will try that but they look like they are all there online in their folders.
They are not being picked up though.
It was the same for another bloc theme.

philbert

All image file in place and still no workie.
???? any other clues????
I have become a big fan of this theme aside from this small problem I am having.


bloc

This is a browser thing..if you have got the latest version of Helios_multi, just upload the preferred color version into the "pod" folder as well , in addition to the color folders. At least then its getting the files, even if a color is not "set".

philbert

Thanks for the help with this.
I reloaded all the "red" pod files into the  main pod folder but still not visible.
I may have misunderstood.

bloc

hm, that is strange. You have selected "red" as default color then? And turned off the color chooser?

philbert


bloc

ah, by looking at your link I guessing the path where Helios is installed, is the cause. Don't use spaces in the folder for Helios..it will confuse the stylesheet. Exchange it with _ or something, and correct the path in Admin/themes and Settings afterwards.

philbert

You are a champion. I thought it looked like a file path problem.
All done and running OK.
I will go through and alter all the settings now.
Thank you very much for that help

Uexplode

WooHoo! This was realy a sweet theme. I am so happy that ther Is ppl like u out here, making stuff that makes the world a better plays to be In ;D :D
Good Work=)
Never straight and narrow
I won't keep in time
Tend to burn the arrow
Out of the line
********************
www.tuvebrink.se
********************

DemonicInfluence

Err... I have a problem...

Okay, I added kirby's theme changer thing here
http://www.simplemachines.org/community/index.php?topic=34453.0

I added this to the bottom:
// This neat function finds and returns info about all of our themes.
function getThemeData()
{
global $db_prefix, $user_info, $scripturl, $settings, $options, $modSettings;

$themes = array();

// Get all of our themes.
$request = db_query("
SELECT value, ID_THEME
FROM {$db_prefix}themes
WHERE variable = 'name'
AND ID_THEME != $settings[theme_id]" . (empty($modSettings['theme_default']) ? '
AND ID_THEME != 1' : '') . "
ORDER BY value", __FILE__, __LINE__);
while ($row = mysql_fetch_assoc($request))
{
$themes[] = array(
'id' => $row['ID_THEME'],
'name' => $row['value'],
);
}
return $themes;
}


and this after the guest login thingy

$themes = getThemeData();
        // Super duper theme changer slash! :D
        if (!empty($themes))
{
echo '
<form action="', $scripturl ,'" name="themeForm">
<select name="theme" onchange="if (this.selectedIndex > 0 &amp;&amp; this.options[this.selectedIndex].value) window.location.href = smf_scripturl + \'?theme=\' + this.options[this.selectedIndex].value.substr(smf_scripturl.indexOf(\'?\') == -1 ? 0 : 1);">';

foreach($themes as $theme)
echo '
<option value="', $theme['id'] ,'">' .$theme['name'] . '</option>';

echo '
</select>
<input type="submit" value="Change Themes!" />
</form>';
}


This code works on the default theme. How come on helios it just doesn't display anything. If I take out the ! in the empty function, it just displays a drop down box with nothing in it. HELP! Thx in advance

bloc

I am not sure..I haven't tested this code at all, but am guessing it has to do with the placement of it. Did you place it right before the ?> in index.tempalte.php? at the very bottom?


DemonicInfluence

Also, I'm am using ohms theme picker.

I did somthing like this

if ($context['user']['is_logged'])
{
    global $boarddir;
    require ''.$boarddir.'/Themes/themechanger.php';
    }
else
{
$themes = getThemeData();
        // Super duper theme changer slash! :D
        if (!empty($themes))
{
echo '
<form action="', $scripturl ,'" name="themeForm">
<select name="theme" onchange="if (this.selectedIndex > 0 &amp;&amp; this.options[this.selectedIndex].value) window.location.href = smf_scripturl + \'?theme=\' + this.options[this.selectedIndex].value.substr(smf_scripturl.indexOf(\'?\') == -1 ? 0 : 1);">';

foreach($themes as $theme)
echo '
<option value="', $theme['id'] ,'">' .$theme['name'] . '</option>';

echo '
</select>
<input type="submit" value="Change Themes!" />
</form>';
}
}


Just in case that's the problem. That works for default theme too..


clickbouyow

Can anyone suggest a shoutbox that will work with Helios?

Uexplode

I say, Damn what a sweet looking theme. I get goosbumps all ower ;D
Never straight and narrow
I won't keep in time
Tend to burn the arrow
Out of the line
********************
www.tuvebrink.se
********************

DemonicInfluence

OKay I fixed. instead of // This neat function finds and returns info about all of our themes.
function getThemeData()
{
global $db_prefix, $user_info, $scripturl, $settings, $options, $modSettings;

$themes = array();

// Get all of our themes.
$request = db_query("
SELECT value, ID_THEME
FROM {$db_prefix}themes
WHERE variable = 'name'
AND ID_THEME != $settings[theme_id]" . (empty($modSettings['theme_default']) ? '
AND ID_THEME != 1' : '') . "
ORDER BY value", __FILE__, __LINE__);
while ($row = mysql_fetch_assoc($request))
{
$themes[] = array(
'id' => $row['ID_THEME'],
'name' => $row['value'],
);
}
return $themes;
}


I used

// This neat function finds and returns info about all of our themes.
function getThemeData()
{
global $db_prefix, $user_info, $scripturl, $settings, $options, $modSettings;

$themes = array();

// Get all of our themes.
$request = db_query("
SELECT value, ID_THEME
FROM {$db_prefix}themes
WHERE variable = 'name'
AND ID_THEME != $settings[theme_id]
ORDER BY value", __FILE__, __LINE__);
while ($row = mysql_fetch_assoc($request))
{
$themes[] = array(
'id' => $row['ID_THEME'],
'name' => $row['value'],
);
}
return $themes;
}

clickbouyow

#779
Parts of Helios Multi are not compatible with 1.1RC1.

Under Profile|Track User, Profile|Track IP and Profile|Permissions I get the following:

An Error Has Occurred!
Unable to load the 'trackUser' template. 


An Error Has Occurred!
Unable to load the 'trackIP' template. 


An Error Has Occurred!
Unable to load the 'showPermissions' template. 

And the read and unread icons in Personal Messages are no longer working.  Everything else seems functional.

Advertisement: