A guide to the basic HiveMind 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.
HiveMind 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 HiveMind "index.php" file. Here is a breakdown of the available options:
$default_style = "light"; // light | dark
$enable_rokzoom = "true"; // true | false
$enable_pngfix = "false"; // true | false
$enable_fontspans = "true"; // true | false (required for sifr)
$enable_sifr = "false"; // true | false
$font_sifr = "walkway"; // any .swf file in sifr/ folder
$font_family = "optima"; // geneva | optima | helvetica | trebuchet
lucida | georgia | palatino
$template_width = "962"; // width in px
$sidebar_width = "250"; // width in px
$sidebar_side = "right"; // left | right
$menu_name = "mainmenu"; // mainmenu by default,
$menu_type = "splitmenu"; // moomenu | suckerfish | splitmenu
$menu_style = "menustyle3"; // [menustyle1... menustyle5]
$default_font = "default"; // smaller | default | larger
$show_fontbuttons = "true"; // true | false
$show_pathway = "true"; // true | false
$show_moduleslider = "true"; // true | false
// module slider configuration
$max_mods_per_row = 3; // maximum number of modules per row
(adjust the height if this wraps)
$modules_list = array(array("title"=>"Group 1", "module"=>"user7"),
array("title"=>"Group 2", "module"=>"user8"),
array("title"=>"Group 3", "module"=>"user9"),
array("title"=>"Group 4", "module"=>"user10"),
array("title"=>"Group 5", "module"=>"user11"));
HiveMind has 2, pre-made styles that can be easily selected from the option shown below. Simply change the settings between the two " " tags to your style of choice.
$default_style = "dark"; // light | dark
RokZoom, a powerful and presentationally excellent script can sometimes come into conflict with other javascript libraries, you can disable it with the following settings.
$enable_rokzoom = "true"; // true | false
You have the ability to select, with ease, the width of the template. The setting below is what you edit to either reduce or increase templates width.
$template_width = "962"; // width in px
The following parameter controls which Joomla! menu is loaded for the horizontal navigation bar. Therefore, you can use a custom menu instead of a default menu such as "tab-menu" or use another default menu such as "topmenu".
$menu_name ="mainmenu"; // mainmenu by default
HiveMind has 4 options for the horizontal navigation bar. You can either, select moomenu, the latest menu addition; suckerfish, the basic vertical dropdown menu; splitmenu, the popular classic or have the area as a separate module position.
$menu_type = "moomenu"; // moomenu | suckerfish
splitmenu | module
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)
You can turn off or on the pngfix with this setting. More info at our Tutorial Site.
$enable_pngfix= "false"; // true | false
With the following setting enabled, you can have multi-colored headers.
$enable_fontspans = "true"; // true | false(required for sifr)
You can have different font styles by setting this to true.
$enable_sifr= "false"; // true | false
With the following setting, you can choose what font you would like sifr to display.
$font_sifr= "walkway"; // any .swf file in sifr/ folder
You can choose which font you would like to use for your titles.
$font_family= "optima"; // geneva|optima|helvetica|
trebuchet|lucida|georgia|palatino
With the following setting, you can choose the width of the sidebar.
$sidebar_width= "250"; // width in px
With this setting, choose to have the sidebar placed on the left or right of the mainbody. The name of the module positions changes to reflect left or right.
$sidebar_side= "right"; // left | right
HiveMind has 5 different looks for your menu. You can choose which look you would like to use with this setting.
$menu_style= "menustyle3"; // [menustyle1... menustyle5]
Based on your own personal preference, you can set the default font size with this setting below.
$default_font ="default"; // smaller | default | larger
You can enable or disable the font sizer buttons that will display at the top of the template.
$show_fontbuttons= "true"; // true | false
This setting controls whether the pathway appears on your site.
$show_pathway= "false"; // true | false
There is now a convenient toggle to show the tabbed modules or not.
$show_moduleslider = "true"; // true | false
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 Title", "module"=>"user7"),
array("title"=>"Group 2 Title", "module"=>"user8"),
array("title"=>"Group 3 Title", "module"=>"user9"),
array("title"=>"Group 4 Title", "module"=>"user10"),
array("title"=>"Group 5 Title", "module"=>"user11"));
|