Youtube API
An API key is required to query Youtube and fetch videos. Once you created your API key, open includes/Config.php and paste in the right side of the field below:
"key" => "YourGoogleAPIKey",
Custom Videos
You can add custom videos by simply opening the file includes/custom.php and adding one Youtube video ID per line. These will show up under "Featured Videos" in the homepage.
Google Analytics ID
You can track your visitors by adding your GA ID in the right side of the code below:
"ga" => "YourGoogleAnalyticsID",
Advertisement
You can advertisments by simply adding your adcodes in the following fields. Each of the fields below is associated with a specific size.
"ad728" =>"Your Adcode",
"ad468" =>"Your Adcode",
"ad300" =>"Your Adcode",
Due to PHP rules your ad code cannot contain a double quote ". Make sure to replace all of the double quotes " by a single quote ' or add a slash right before it e.g. \"
Theme
You can switch theme by simply changing the following configuration in the config file. The value for theme is the name of the name of the theme folder.
"theme" => "default"
The default commenting system is Facebook because it doesn't require any extra info, though it is highly recommended to add your APP ID to track your users. If you want to enable Disqus then simply add your Disqus username to the field below to enable it.
"comment" => array( // Facebook is default
"facebook" => "YOURAPPID", // Insert YOUR APP ID here
"disqus" => "YOURDISQUSUSERNAME" // Insert your disqus username here
),
Timezone
To better represent the time, it is recommended to add your timezone here. You can get the list of your timezone from https://php.net/manual/en/timezones.php
Mod Rewrite
To enable clean URls, enabled this option. This option is enabled by default however not that this require the Mod Rewrite module to be enabled. If you don't have that module enalbed, set this to FALSE
"mod_rewrite" => TRUE,
Caching
Caching is an excellent way to speed up loading of your site. This is turned on by default. Make sure tha /cache exists and is writable. If you want to turn it off, set the config below to FALSE
"cache" => TRUE,