Label head and change text in index.php

Professional Jomal template designed to be easily adaptable to all kinds of business
GK User
Wed Dec 01, 2010 9:35 am
Hi:

I must insert a label of verification of google in head and /head
Where this the file to do it?
Pedro
User avatar
Senior Boarder

GK User
Wed Dec 01, 2010 9:37 am
it's various places depending on templates..

most have it in templaates/TEMPLATENAME/lautouts/default.php
User avatar
Platinum Boarder

GK User
Wed Dec 01, 2010 9:48 am
Hi:
I do not see the template it is: mystore
User avatar
Senior Boarder

GK User
Wed Dec 01, 2010 9:55 am
a small search in the file gives me this

<head> <?php $this->loadBlock('head') ?> <?php $this->useCache($this->getParam('css_compress'), $this->getParam('css_cache')); ?> </head>
User avatar
Platinum Boarder

GK User
Wed Dec 01, 2010 10:00 am
Here this all the file default.php and there is no label <head>

<?php

/*
#------------------------------------------------------------------------
# myStore - May 2010 (for Joomla 1.5)
#
# Copyright (C) 2007-2010 Gavick.com. All Rights Reserved.
# License: Copyrighted Commercial Software
# Website: http://www.gavick.com
# Support: [email protected]
#------------------------------------------------------------------------
# Based on T3 Framework
#------------------------------------------------------------------------
# Copyright (C) 2004-2009 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
# @license - GNU/GPL, http://www.gnu.org/copyleft/gpl.html
# Author: J.O.O.M Solutions Co., Ltd
# Websites: http://www.joomlart.com - http://www.joomlancers.com
#------------------------------------------------------------------------
*/

// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
$this->_basewidth = 20;
$positions = array (
'left1' =>'left1',
'left2' =>'left2',
'left-mass-top' =>'left_top',
'left-mass-bottom' =>'left_bottom',
'right1' =>'right1',
'right2' =>'right2',
'right-mass-top' =>'right_top',
'right-mass-bottom' =>'right_bottom',
'content-mass-top' =>'top',
'content-mass-bottom' =>'bottom',
'content-top' =>'adv_top',
'content-bottom' =>'adv_bottom',
'inset1' =>'inset1',
'inset2' =>'inset2'
);

$this->customwidth('right', $this->_tpl->params->get("right_column"));
$this->customwidth('right2', $this->_tpl->params->get("right2_column"));
$this->customwidth('left', $this->_tpl->params->get("left_column"));
$this->customwidth('left2', $this->_tpl->params->get("left2_column"));
$this->customwidth('inset1', $this->_tpl->params->get("inset1_column"));
$this->customwidth('inset2', $this->_tpl->params->get("inset2_column"));

$this->definePosition ($positions);
$this->loadBlock('definitions');

?>

<?php if ($this->isIE() && ($this->getParam('direction')=='rtl' || $this->direction == 'rtl')) { ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<?php } else { ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php } ?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>">
<head>
<?php $this->loadBlock('head') ?>
<?php $this->useCache($this->getParam('css_compress'), $this->getParam('css_cache')); ?>
</head>

<body id="bd" class="fs<?php echo $this->getParam(GK_TOOL_FONT);?> <?php echo $this->browser();?>">
<?php if($this->isIE6() && $this->_tpl->params->get('ie6bar') == 1) : ?>
<div id="infobar"><a href="http://browsehappy.com"><?php echo JText::_('IE6_BAR'); ?></a></div>
<?php endif; ?>

<div id="gk-wrapper" class="main">
<a name="Top" id="Top"></a>
<!-- TOOLBAR -->
<?php $this->loadBlock('toolbar'); ?>
<!-- MAIN NAVIGATION -->
<?php $this->loadBlock('mainnav') ?>
<!-- HEADER -->
<?php $this->loadBlock('header'); ?>
<!-- TOP MODULES -->
<?php $this->loadBlock('topsl'); ?>

<?php if( $this->countModules('banner2') ): ?>
<div id="banner2" class="head clearfix">
<jdoc:include type="modules" name="banner2" style="none" />
</div>
<?php endif; ?>

<?php if($this->checkComponent() || $this->checkMainbody() || $this->countModules($this->getPositionName('left1').' + '.$this->getPositionName('left2').' + '.$this->getPositionName('left-mass-top').' + '.$this->getPositionName('left-mass-bottom').' + '.$this->getPositionName('right1').' + '.$this->getPositionName('right2').' + '.$this->getPositionName('right-mass-top').' + '.$this->getPositionName('right-mass-bottom').' + '.$this->getPositionName('content-mass-top').' + '.$this->getPositionName('content-mass-bottom').' + '.$this->getPositionName('content-top').' + '.$this->getPositionName('content-bottom').' + '.$this->getPositionName('inset1').' + '.$this->getPositionName('inset2'))) : ?>
<!-- MAIN CONTAINER -->
<div id="gk-container">
<div class="static clearfix">
<div id="gk-mainbody" style="width:<?php echo $this->getColumnWidth('mw') ?>%">
<?php $this->loadBlock('main') ?>
<?php $this->loadBlock('left') ?>
</div>
<?php $this->loadBlock('right') ?>
</div>
<!-- BOTTOM MODULES -->
<?php $this->loadBlock('botsl') ?>
</div>
<?php endif; ?>

<!-- FOOTER -->
<?php $this->loadBlock('footer') ?>
</div>

<?php if($this->_tpl->params->get('t3_logo')) : ?>
<a href="http://wiki.joomlart.com/wiki/JA_Template_Framework/Overview" target="_blank" id="t3_logo">Powered by T3 Framework</a>
<?php endif; ?>

<!-- POPUPS -->
<?php $this->loadBlock('usertools/login'); ?>
<?php $this->loadBlock('usertools/register'); ?>
<?php $this->loadBlock('usertools/cart'); ?>
<jdoc:include type="modules" name="debug" />
</body>
</html>
User avatar
Senior Boarder

GK User
Wed Dec 01, 2010 10:04 am
please search on this site what you just posted.. there is a <head> tag...
User avatar
Platinum Boarder

GK User
Wed Dec 01, 2010 10:09 am
pardon is certain
User avatar
Senior Boarder

GK User
Wed Dec 01, 2010 10:17 am
:)
User avatar
Platinum Boarder

GK User
Wed Dec 01, 2010 10:37 am
I want to create a new question and the system gives error in My Discussions
User avatar
Senior Boarder

GK User
Wed Dec 01, 2010 10:38 am
I can ask here?
User avatar
Senior Boarder

GK User
Wed Dec 01, 2010 10:43 am
sure you can.
User avatar
Platinum Boarder


cron