A guide to the basic MediaMogul 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.
MediaMogul 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 MediaMogul "index.php" file. Here is a breakdown of the available options:
$default_style = "style1"; //[style1... style6]
$enable_rokzoom = "true"; // true | false
$enable_pngfix = "false"; // true | false
$template_width = "966"; // width in px
$sidebar_width = "250"; // width in px
$sidebar_side = "right"; // left | right
$menu_name = "mainmenu"; // mainmenu by default, can be any Joomla menu name
$menu_type = "moomenu"; // moomenu | suckerfish | splitmenu | module
$default_font = "default"; // smaller | default | larger
$show_fontbuttons = "true"; // true | false
$show_pathway = "false"; // true | false
$show_moduleslider = "true"; // true | false
// module slider configuration
$module_slider_height = 200; // height in px
$max_mods_per_row = 3; // maximum number of modules per row
(adjust the height if this wraps)
$modules_list
= array(array("title"=>"Group 1 Title", "module"=>"user12"),
array("title"=>"Group 2 Title", "module"=>"user13"),
array("title"=>"Group 3 Title", "module"=>"user14"),
array("title"=>"Group 4 Title", "module"=>"user15"),
array("title"=>"Group 5 Title", "module"=>"user16"));
MediaMogul has 8, 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 = "style1"; //custom | [style1...style6]
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 = "966"; // width in px | fluid
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
MediaMogul 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
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, you can control the width of the sidebar with one simple setting.
$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
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
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
This setting controls the height of the Module Slider in pixels.
$module_slider_height = 200; // height in px
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 Title", "module"=>"user12"),
array("title"=>"Group 2 Title", "module"=>"user13"),
array("title"=>"Group 3 Title", "module"=>"user14"),
array("title"=>"Group 4 Title", "module"=>"user15"),
array("title"=>"Group 5 Title", "module"=>"user16"));
|