|
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"));
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
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"));
|