If you have EasyMod installed (and your mods installed via easymod) you can easily uninstall them. Actually you don't uninstall them, you just replace the modded files with the original ones.
If you want REAL uninstallation of a mod, you must reverse the template. For example, take this:
MOD's template:
PHP Code:
#
#-----[ FIND ]-----------------------------------------
#
$ip_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_ip'] . '" alt="' . $lang['View_IP'] . '" title="' . $lang['View_IP'] . '" border="0" /></a>';
#
#-----[ REPLACE WITH ]------------------------------------------
#
if( $userdata['user_level'] == ADMIN )
{
$ip_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_ip'] . '" alt="' . $lang['View_IP'] . '" title="' . $lang['View_IP'] . '" border="0" /></a>';
}
else
{
$ip_img = '';
}
Reversed one:
PHP Code:
#-----[ FIND ]-----------------------------------------
#
if( $userdata['user_level'] == ADMIN )
{
$ip_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_ip'] . '" alt="' . $lang['View_IP'] . '" title="' . $lang['View_IP'] . '" border="0" /></a>';
}
else
{
$ip_img = '';
}
#
#-----[ REPLACE WITH ]------------------------------------------
#
$ip_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_ip'] . '" alt="' . $lang['View_IP'] . '" title="' . $lang['View_IP'] . '" border="0" /></a>';
If someone has a "cleaner" method, please tell it..
Bookmarks