Edit following files and change them as below. Line numbers are from joomla 2.5 version other versions you might find the same codes in different lines depending on template version.
Find File: "\templates\gk_finance_business\layouts\default.php"
Find Line: 44 which is below
- Code: Select all
xml:lang="pl" lang="pl">
Replace with below
- Code: Select all
xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>">
Following edits are same lines in each below files.
Find Files:
- Code: Select all
\templates\gk_finance_business\layouts\android.php
\templates\gk_finance_business\layouts\iphone.php
\templates\gk_finance_business\layouts\handheld.php
Find Line: 25 which is below
- Code: Select all
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl">
Replace with below
- Code: Select all
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>">
See you around...