RE: How do you convert a glype theme from 0.4 to 0.5
Load your theme in 0.4, go to View Source, save source as main.php and it's converted. If you're intending to distribute the theme, you'll probably want to replace bits (such as site name) with the appropriate placeholder instead of having them hardcoded. In main.php:
<!--[glype:tagname]-->
Automatically gets replaced with the value of $themeReplace['tagname'] from config.php:
$themeReplace['tagname'] = 'New value here';
Only include other templates in your theme package if you've changed them. The only required file is main.php, config.php is optional and allows ad-ready themes, the rest allow you to customize other parts but if not included in that theme folder, the script loads from the default.
|