(Solved) Lots of white space & No login
Best Joomla template with unique design which fits perfectly with car, gaming, business, portal or blog type websites
- GK User
- Mon Apr 06, 2009 9:06 pm
Hello,
First of all I want to tell you people you made a great template again.
Thanks for the effort.
I have 3 questions (also see the attachment)
First question:
I have alot of white space between the article on the frontpage and the next module position
How can I change that?
Second question:
There is no "login" thing showing on the frontpage and other pages.
Only the "Register" is showing.
Third question:
Where can I change the language of the register form and the login form?
I want to translate the whole thing into dutch.
Thanks for the answers.
Stijn
First of all I want to tell you people you made a great template again.
Thanks for the effort.
I have 3 questions (also see the attachment)
First question:
I have alot of white space between the article on the frontpage and the next module position
How can I change that?
Second question:
There is no "login" thing showing on the frontpage and other pages.
Only the "Register" is showing.
Third question:
Where can I change the language of the register form and the login form?
I want to translate the whole thing into dutch.
Thanks for the answers.
Stijn

-
- Senior Boarder
- GK User
- Mon Apr 06, 2009 9:36 pm
Fixed the login issue. 

-
- Senior Boarder
- GK User
- Tue Apr 07, 2009 11:33 am
please specify how did you fix the login problem?
-
- Fresh Boarder
- GK User
- Tue Apr 07, 2009 11:24 pm
I assume ...enabled login
For translation of Register...look inside your language file for Register, if you do not have it there, add it....as this is code calling it:
PS: can not help more without URL...as I write this again and again and again

For translation of Register...look inside your language file for Register, if you do not have it there, add it....as this is code calling it:
- Code: Select all
<?php echo JText::_('REGISTER'); ?>
PS: can not help more without URL...as I write this again and again and again

-
- Senior Boarder
- GK User
- Wed Apr 08, 2009 12:37 pm
Testversion running @:
http://www.trouwautosverhuur.nl/aaa
http://www.trouwautosverhuur.nl/aaa
-
- Senior Boarder
- GK User
- Wed Apr 08, 2009 2:55 pm
Find this code inside
inside template directory:
And change to this:
This will help to everyone who doesn´t use read more or Updated date...
- Code: Select all
htmlcom_contentcategoryblog_item.php
inside template directory:
- Code: Select all
<tr>
<td colspan="2" ><table width="100%" class="read_block">
<tr>
<?php if ($this->item->params->get('show_readmore') && $this->item->readmore) : ?>
<td><a href="<?php echo $this->item->readmore_link; ?>" class="readon<?php echo $this->item->params->get('pageclass_sfx'); ?>">
<?php if ($this->item->readmore_register) :
echo JText::_('Register to read more...');
elseif ($readmore = $this->item->params->get('readmore')) :
echo $readmore;
else :
echo JText::sprintf('Read more...');
endif; ?>
</a></td>
<?php endif; ?>
<?php if ( intval($this->item->modified) != 0 && $this->item->params->get('show_modify_date')) : ?>
<td class="modifydate" valign="middle"><?php echo JText::_( 'Last Updated' ); ?> ( <?php echo JHTML::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2')); ?> ) </td>
<?php endif; ?>
</tr>
</table></td>
</tr>
And change to this:
- Code: Select all
<?php if ($this->item->params->get('show_readmore') && $this->item->readmore) : ?>
<tr>
<td colspan="2" ><table width="100%" class="read_block">
<tr>
<td><a href="<?php echo $this->item->readmore_link; ?>" class="readon<?php echo $this->item->params->get('pageclass_sfx'); ?>">
<?php if ($this->item->readmore_register) :
echo JText::_('Register to read more...');
elseif ($readmore = $this->item->params->get('readmore')) :
echo $readmore;
else :
echo JText::sprintf('Read more...');
endif; ?>
</a></td>
<?php endif; ?>
<?php if ( intval($this->item->modified) != 0 && $this->item->params->get('show_modify_date')) : ?>
<td class="modifydate" valign="middle"><?php echo JText::_( 'Last Updated' ); ?> ( <?php echo JHTML::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2')); ?> ) </td>
</tr>
</table></td>
</tr> <?php endif; ?>
This will help to everyone who doesn´t use read more or Updated date...
-
- Senior Boarder
- GK User
- Wed Apr 08, 2009 4:50 pm
www.master.gr is the site and login on top rigt cannot be shown when i enable from the params of template ( i have login button enabled thought).
Also how could i change the font of the article headers?
Also how could i change the font of the article headers?
-
- Fresh Boarder
- GK User
- Wed Apr 08, 2009 4:51 pm
where is this index.php?
-
- Fresh Boarder
- GK User
- Wed Apr 08, 2009 5:11 pm
Also menu buttons do not show!!!! when the template is viewed in ie7
-
- Fresh Boarder
- GK User
- Wed Apr 08, 2009 5:14 pm
master123 wrote:
do you have cache on?
PS: when we speak about index.php with regard to template, it is always file inside templates/template_name/
www.master.gr is the site and login on top rigt cannot be shown when i enable from the params of template ( i have login button enabled thought).
Also how could i change the font of the article headers?
do you have cache on?
PS: when we speak about index.php with regard to template, it is always file inside templates/template_name/
-
- Senior Boarder
- GK User
- Wed Apr 08, 2009 5:17 pm
master123 wrote:
Hi
Did you set the login form module on the login module position?
For any other help configuration, you now can check the respective HelpFile of this template.
Please, donwload again the rest files package.
Cheers
www.master.gr is the site and login on top rigt cannot be shown when i enable from the params of template ( i have login button enabled thought).
Also how could i change the font of the article headers?
Hi
Did you set the login form module on the login module position?
For any other help configuration, you now can check the respective HelpFile of this template.
Please, donwload again the rest files package.
Cheers

-
- Platinum Boarder
- GK User
- Wed Apr 08, 2009 10:04 pm
Martajz wrote:
Hmm.. cannot find this code in index.php
Is that the right file?
Find this code inside index.php:
- Code: Select all
<tr>
<td colspan="2" ><table width="100%" class="read_block">
<tr>
<?php if ($this->item->params->get('show_readmore') && $this->item->readmore) : ?>
<td><a href="<?php echo $this->item->readmore_link; ?>" class="readon<?php echo $this->item->params->get('pageclass_sfx'); ?>">
<?php if ($this->item->readmore_register) :
echo JText::_('Register to read more...');
elseif ($readmore = $this->item->params->get('readmore')) :
echo $readmore;
else :
echo JText::sprintf('Read more...');
endif; ?>
</a></td>
<?php endif; ?>
<?php if ( intval($this->item->modified) != 0 && $this->item->params->get('show_modify_date')) : ?>
<td class="modifydate" valign="middle"><?php echo JText::_( 'Last Updated' ); ?> ( <?php echo JHTML::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2')); ?> ) </td>
<?php endif; ?>
</tr>
</table></td>
</tr>
And change to this:
- Code: Select all
<?php if ($this->item->params->get('show_readmore') && $this->item->readmore) : ?>
<tr>
<td colspan="2" ><table width="100%" class="read_block">
<tr>
<td><a href="<?php echo $this->item->readmore_link; ?>" class="readon<?php echo $this->item->params->get('pageclass_sfx'); ?>">
<?php if ($this->item->readmore_register) :
echo JText::_('Register to read more...');
elseif ($readmore = $this->item->params->get('readmore')) :
echo $readmore;
else :
echo JText::sprintf('Read more...');
endif; ?>
</a></td>
<?php endif; ?>
<?php if ( intval($this->item->modified) != 0 && $this->item->params->get('show_modify_date')) : ?>
<td class="modifydate" valign="middle"><?php echo JText::_( 'Last Updated' ); ?> ( <?php echo JHTML::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2')); ?> ) </td>
</tr>
</table></td>
</tr> <?php endif; ?>
This will help to everyone who doesn´t use read more or Updated date...
Hmm.. cannot find this code in index.php
Is that the right file?
-
- Senior Boarder
- GK User
- Wed Apr 08, 2009 10:08 pm
Upppss, I wrote automaticaly index.php but it is:
inside template directory
- Code: Select all
html/com_content/category/blog_item.php
inside template directory
-
- Senior Boarder
- GK User
- Wed Apr 08, 2009 10:19 pm
Martajz wrote:
sorry to say, but that dont really help.
see www.trouwautosverhuur.nl/aaa (testsite)
Upppss, I wrote automaticaly index.php but it is:
- Code: Select all
html/com_content/category/blog_item.php
inside template directory
sorry to say, but that dont really help.
see www.trouwautosverhuur.nl/aaa (testsite)
-
- Senior Boarder
- GK User
- Wed Apr 08, 2009 10:36 pm
make the same also for section...inside html folder
PS: and if you would switch off SEF...I can see better what kind of menu you use...it helps me to find the source file for your problem
PS2: edit....make the same also for frontpage...default_item
PS: and if you would switch off SEF...I can see better what kind of menu you use...it helps me to find the source file for your problem
PS2: edit....make the same also for frontpage...default_item
-
- Senior Boarder
- GK User
- Fri Apr 10, 2009 4:16 pm
Thnx, the last one helped me out 

-
- Senior Boarder
- GK User
- Sat Apr 11, 2009 7:17 am
My login was not working either. All I did was activate the GK Login Module in the LOGIN module position.
Since I installed this template on an existing installation of joomla, i could not get all the benefits of a clean QuickStart install.
So I had and still have many things that need to be fixed.
But login is working now.
Since I installed this template on an existing installation of joomla, i could not get all the benefits of a clean QuickStart install.
So I had and still have many things that need to be fixed.
But login is working now.
-
- Fresh Boarder
- GK User
- Sun Apr 12, 2009 12:44 am
jareau wrote:
Hi
If you have the respective HelpFile of the Car Magazine template,
you can see references to all the modules used on the demo and also
some screenshots of their respective parameters configurations.
This may be a very good start to built your website, without the QuickStart version.
Cheers
My login was not working either. All I did was activate the GK Login Module in the LOGIN module position.
Since I installed this template on an existing installation of joomla, i could not get all the benefits of a clean QuickStart install.
So I had and still have many things that need to be fixed.
But login is working now.
Hi
If you have the respective HelpFile of the Car Magazine template,
you can see references to all the modules used on the demo and also
some screenshots of their respective parameters configurations.
This may be a very good start to built your website, without the QuickStart version.
Cheers

-
- Platinum Boarder
- GK User
- Thu May 14, 2009 2:42 pm
Hello!
I have a problem with the Read More link not displaying correctly. It would almost seem to be to big for the button graphic.
Could you help identify the problem please? You can view the problem on my home > blog page http://www.royalbushtigers.com/
Thanks in advance!
I have a problem with the Read More link not displaying correctly. It would almost seem to be to big for the button graphic.
Could you help identify the problem please? You can view the problem on my home > blog page http://www.royalbushtigers.com/
Thanks in advance!
-
- Fresh Boarder
19 posts
• Page 1 of 1