Manual installation of mods: Difference between revisions From Online Manual

Jump to: navigation, search
No edit summary
Line 1: Line 1:
{{version specific
|version=2.x
|content=If you are running SMF 2.x, please try using the [[Package_manager#Advanced|emulate version]] function before edit the package.
}}
Mods are installed on the default theme's template files. It is hard for a Mod's author as well as a theme creater to make Mods work with other themes especially if they have several of their own template files. When a template file is not found in a custom non-default theme the theme will rollback and use the default theme's template file. But for the template files that the custom theme does use, you will need to manually install the mod on to your custom themes template files if the mod edited the same template file in the default theme. To apply a Mod to any theme manually use the following steps.
Mods are installed on the default theme's template files. It is hard for a Mod's author as well as a theme creater to make Mods work with other themes especially if they have several of their own template files. When a template file is not found in a custom non-default theme the theme will rollback and use the default theme's template file. But for the template files that the custom theme does use, you will need to manually install the mod on to your custom themes template files if the mod edited the same template file in the default theme. To apply a Mod to any theme manually use the following steps.


Line 12: Line 17:


<search>
<search>
// Show the anchor for the top and for the first message.  If the first message is new, say so.
// Show the anchor for the top and for the first message. If the first message is new, say so.
</search>
</search>


Line 18: Line 23:
global $bar_exps, $bar_posts;
global $bar_exps, $bar_posts;


// Show the anchor for the top and for the first message.  If the first message is new, say so.
// Show the anchor for the top and for the first message. If the first message is new, say so.
</replace>}}
</replace>}}
And that means, we need to open Display.template.php and look for:
And that means, we need to open Display.template.php and look for:


{{code|// Show the anchor for the top and for the first message.&nbsp; If the first message is new, say so.</code>}}
{{code|// Show the anchor for the top and for the first message. If the first message is new, say so.</code>}}
and replace it with:
and replace it with:


{{code|global $bar_exps, $bar_posts;
{{code|global $bar_exps, $bar_posts;


// Show the anchor for the top and for the first message.&nbsp; If the first message is new, say so.}}
// Show the anchor for the top and for the first message. If the first message is new, say so.}}


==See Also==
==See Also==
*[[Error_in_mod_installation]]
*[[Error_in_mod_installation]]
[[Category:Customizing SMF]]
[[Category:Customizing SMF]]

Revision as of 07:43, 13 July 2011

If you are running SMF 2.x, please try using the emulate version function before edit the package.

Mods are installed on the default theme's template files. It is hard for a Mod's author as well as a theme creater to make Mods work with other themes especially if they have several of their own template files. When a template file is not found in a custom non-default theme the theme will rollback and use the default theme's template file. But for the template files that the custom theme does use, you will need to manually install the mod on to your custom themes template files if the mod edited the same template file in the default theme. To apply a Mod to any theme manually use the following steps.

  1. unzip the Mod package, and look for a file ending with .mod or .xml
  2. open the .mod file with any text editor and search for <edit file>...</edit file> , you will find a file name after the tag. What we need here is looking for a template file i.e. index.template.php, BoardIndex.template.php ..etc.
  3. If you locate any template after the <edit file> tag, you will find the <search for>...</search for>tag below it. It will contain a block of code that must be located in the specified template.
  4. After the <search for> tag, you will find one of these: <add after>...</add after> , which add a block of code after the code found. <add before>...</add before> , which add a block of code before the code found. <replace>...</replace> , which replace a block of code with the code found.

For example:

<edit file>
Themes/default/Display.template.php
</edit file>

<search>
// Show the anchor for the top and for the first message. If the first message is new, say so.
</search>

<replace>
global $bar_exps, $bar_posts;

// Show the anchor for the top and for the first message. If the first message is new, say so.
</replace>

And that means, we need to open Display.template.php and look for:

// Show the anchor for the top and for the first message. If the first message is new, say so.

and replace it with:

global $bar_exps, $bar_posts;

// Show the anchor for the top and for the first message. If the first message is new, say so.

See Also



Advertisement: