-
AuthorPosts
-
brusamolino Friend
brusamolino
- Join date:
- January 2009
- Posts:
- 273
- Downloads:
- 75
- Uploads:
- 70
- Thanks:
- 56
- Thanked:
- 10 times in 2 posts
November 11, 2010 at 5:05 pm #156312Hi
I’ve a problem to change “Welcome to the Frontpage” in homepage
I’ve tried to insert a new title in system parameter in the Home link. Go to Menus > Main Menu -> System but not change… why?Phill ModeratorPhill
- Join date:
- February 2014
- Posts:
- 7013
- Downloads:
- 40
- Uploads:
- 77
- Thanks:
- 917
- Thanked:
- 2206 times in 1818 posts
November 11, 2010 at 5:17 pm #362475It is done slightly differently in JAT3. Please follow the guide here which explains all – http://www.joomlart.com/forums/topic/change-or-remove-page-title-guide/
1 user says Thank You to Phill for this useful post
jersonjunior Friendjersonjunior
- Join date:
- November 2010
- Posts:
- 79
- Downloads:
- 2
- Uploads:
- 8
- Thanks:
- 15
- Thanked:
- 2 times in 1 posts
November 12, 2010 at 9:47 pm #362673Go to Menus=> Main Menu=>Home=>Parameters (System)=>Show Page Title No or Yes
Phill ModeratorPhill
- Join date:
- February 2014
- Posts:
- 7013
- Downloads:
- 40
- Uploads:
- 77
- Thanks:
- 917
- Thanked:
- 2206 times in 1818 posts
VisiGod FriendVisiGod
- Join date:
- January 2006
- Posts:
- 538
- Downloads:
- 0
- Uploads:
- 4
- Thanks:
- 76
- Thanked:
- 138 times in 18 posts
November 13, 2010 at 10:08 am #362720<em>@phill luckhurst 203360 wrote:</em><blockquote>Please carefully read the aformentioned guide. Switching the title off will just hide it. If you need to change that title then it is all explained in the guide.</blockquote>
But why JA are hardcoding this in the template?
Phill ModeratorPhill
- Join date:
- February 2014
- Posts:
- 7013
- Downloads:
- 40
- Uploads:
- 77
- Thanks:
- 917
- Thanked:
- 2206 times in 1818 posts
November 13, 2010 at 10:20 am #362723That is a question only the devs can answer.
Arvind Chauhan ModeratorArvind Chauhan
- Join date:
- September 2014
- Posts:
- 3835
- Downloads:
- 74
- Uploads:
- 92
- Thanks:
- 1240
- Thanked:
- 1334 times in 848 posts
November 13, 2010 at 10:32 am #362726<em>@VisiGod 203365 wrote:</em><blockquote>But why JA are hardcoding this in the template?</blockquote>
Did you try changing it in the language file?
Arvind
VisiGod FriendVisiGod
- Join date:
- January 2006
- Posts:
- 538
- Downloads:
- 0
- Uploads:
- 4
- Thanks:
- 76
- Thanked:
- 138 times in 18 posts
November 13, 2010 at 10:34 am #362727<em>@drarvindc 203371 wrote:</em><blockquote>Did you try changing it in the language file?
Arvind</blockquote>
Hi Arvind,
I can change it in the language file, that’s not the issue.
The page titles are usually controlled by the CMS and not by the template. I was just wandering why this was done that way.No offence đŸ™‚
Arvind Chauhan ModeratorArvind Chauhan
- Join date:
- September 2014
- Posts:
- 3835
- Downloads:
- 74
- Uploads:
- 92
- Thanks:
- 1240
- Thanked:
- 1334 times in 848 posts
November 13, 2010 at 10:45 am #362729Hi Ivo,
T3 supports two page titles. Check this screenshot >> http://easycaptures.com/fs/uploaded/459/1391872022.jpg
Though i have not verified it on JA Event yet, but i shall try to look into it this sunday and may be on monday get it added to the userguide of JA Event if required.
To me it looks like a added feature to have 2 page titles, will ask the devs to evaluate the same and may be remove it.
Arvind
VisiGod FriendVisiGod
- Join date:
- January 2006
- Posts:
- 538
- Downloads:
- 0
- Uploads:
- 4
- Thanks:
- 76
- Thanked:
- 138 times in 18 posts
November 13, 2010 at 10:54 am #362730<em>@drarvindc 203374 wrote:</em><blockquote>Hi Ivo,
T3 supports two page titles. Check this screenshot >> http://easycaptures.com/fs/uploaded/459/1391872022.jpg
Though i have not verified it on JA Event yet, but i shall try to look into it this sunday and may be on monday get it added to the userguide of JA Event if required.
To me it looks like a added feature to have 2 page titles, will ask the devs to evaluate the same and may be remove it.
Arvind</blockquote>
There is an option in the menu parameters to switch off the OnPage title.
In fact in Joomla! 1.6 you have control on both (i.e. browser title and on the page title).Phill ModeratorPhill
- Join date:
- February 2014
- Posts:
- 7013
- Downloads:
- 40
- Uploads:
- 77
- Thanks:
- 917
- Thanked:
- 2206 times in 1818 posts
November 13, 2010 at 1:04 pm #362743I am aware of that in 1.6. I wonder if this was part of the plan the developers put in for future compatability.
David Porré FriendDavid Porré
- Join date:
- September 2014
- Posts:
- 194
- Downloads:
- 44
- Uploads:
- 5
- Thanks:
- 23
- Thanked:
- 9 times in 1 posts
January 27, 2011 at 10:38 am #374051Hello,
I came to this weird issue also, trying to change the page title in the menu item admin panel.
It showed correctly in the navigator window title, but not on the page, which sticked to “Welcome to the frontpage”.I opened plugins/system/jat3/base-themes/default/html/com_content/frontpage/default.php and changed :
<?php if ($this->params->get('show_page_title',1)) : ?>
<h1 class="componentheading"><?php echo JText::_('Home page title'); ?></h1>
<?php endif; ?>
to :
<?php if ($this->params->get('show_page_title',1)) : ?>
<h1 class="componentheading"><?php echo $this->escape($this->params->get('page_title')); ?></h1>
<?php endif; ?>
and now it works fine !
Using Joomla 1.5.
Hope it will help,
Best regards,
David aka Shapes -
AuthorPosts
This topic contains 12 replies, has 6 voices, and was last updated by David Porré 13 years, 9 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum