National Flags on Portal

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

National Flags on Portal

Post by Stoker »

National Flags on Portal
Written by Stoker

Putting the National Flag mod on the portal page is quite easy. You need to have the National Flag installed.

Open portal.php
Find:

Code: Select all

// Assign index specific vars
Before add:

Code: Select all

//Begin: National_Flag
if (!empty($config['allow_flags']))
{
	if (!function_exists('top_flags'))
	{
		include($phpbb_root_path . 'includes/functions_flag.' . $phpEx);
	}
	top_flags();
}
//End: National_Flag
Open styles/prosilver/template/simpleportal_body.html
Find:

Code: Select all

<!-- End Online List -->
After add:

Code: Select all

<!-- INCLUDE top_flags.html -->