Populus Basic Customisation

A guide to the basic Populus customisation options that can be configured in the template "index.php" file with a description of each of the available options and how they affect the presentation of the template.

Populus features several built in configuration options that have been designed to be easily changed with a single control. You can take advantage of these customisation options by making changes in the Populus "index.php" file. Here is a breakdown of the available options:

$default_style 	 = "style1";    //[style1... style8] 

$enable_rokzoom	 = "true";      // true | false

$template_width  = "950";       // width in px

$sidebar_width 	 = "375";       // width in px

$menu_name 	 = "mainmenu";  // can be any Joomla menu name

$menu_type 	 = "moomenu";   // moomenu | suckerfish | splitmenu | module

$splitmenu_col	 = "secondcol"; // secondcol | thirdcol

$default_font 	 = "default";   // smaller | default | larger

$show_pathway 	 = "false";     // true | false
	
// module slider configuration

$modules_list  = array(array("title"=>"Group 1 Stuff", "module"=>"user7"),

		 array("title"=>"Group 2 Panel", "module"=>"user8"),

		 array("title"=>"Group 3 Collection", "module"=>"user9"),

		 array("title"=>"Group 4 Assortment", "module"=>"user10"),

		 array("title"=>"Group 5 Items", "module"=>"user11"));

$module_slider_height = 200;   // height in px

$max_mods_per_row     = 3;     // maximum number of modules per row 
                                 (adjust the height if this wraps)

Sidebar width

With the following setting, you can control the width of the sidebar with one simple setting.
$sidebar_width  = "375";       
// width in px

Splitmenu Location

With this setting, choose which column the splitmenu sub menu is placed.
$splitmenu_col	 = "secondcol"; 
// secondcol | thirdcol

Default Font

Based on your own personal preference, or the preference of your users; you can easily set the default font size with this setting below:-
$default_font = "default";   
// smaller | default | larger

Show Pathway

Sometimes sites just look better with no pathway, and we've provided a convenient toggle to allow you to disable this for your site
$show_pathway = "false";  
// true | false

Module Slider Height

This setting controls the height of the Module Slider in pixels.
$module_slider_height = 200;   
// height in px

Module Count

The module configuration variable below controls how many consecutive modules you can have for a position.
$max_mods_per_row = 3; // max number of 
modules per row (if wraps, adjust height)

Module List

With the setting illustrated below, you can control the aspects of the integrated rokslide feature to a great extent. You can control the tab title and also the module position which appears in each of the tabs.

In the code snippet, we have 5 lines, each line controls a single tab. Each line is segregated into 2 distinct parts. These are "title"=>"Tab Title", which controls the Tab Title. The second part is "module"=>"Module Position"),
$modules_list = array(array("title"=>"Group 1 Stuff", "module"=>"user7"),

		 array("title"=>"Group 2 Panel", "module"=>"user8"),

		 array("title"=>"Group 3 Collection", "module"=>"user9"),

		 array("title"=>"Group 4 Assortment", "module"=>"user10"),

		 array("title"=>"Group 5 Items", "module"=>"user11"));