National Flags on Portal

Download and support for PhpBB3 Simple Portal
Locked
User avatar
Stoker
Site Admin
Site Admin
Posts: 3525
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

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 -->
Board rules! No PM support
Locked