before (on versions 1.0 and 1.5 joomla) everything is solved simply by editing the index.php file in the template folder, but now - I do not see how to fix the template
in the domain.com\www\templates\gk_gamenews\index.php
- Code: Select all
<?php
/**
*
* Main file
*
* @version 3.0.0
* @package Gavern Framework
* @copyright Copyright (C) 2010 - 2012 GavickPro. All rights reserved.
*
*/
// No direct access.
defined('_JEXEC') or die;
// enable showing errors in PHP
//ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_WARNING & ~E_STRICT);
//ini_set('display_errors','On');
// include framework classes and files
require_once('lib/gk.framework.php');
require_once('lib/framework/gk.const.php');
// run the framework
$tpl = new GKTemplate($this, $GK_TEMPLATE_MODULE_STYLES);
// EOF
Thank you