Change this:
{assign var="selected" value="ban"}
{assign var="no_inner_div" value="true"}
{jrCore_lang skin=$_conf.jrCore_active_skin id="9" default="News" assign="page_title1"}
{assign var="page_title" value="`$page_title1` - `$_post._1|replace:"-":" "`"}
{jrCore_page_title title=$page_title}
{jrCore_include template="header.tpl"}
to this:
{assign var="selected" value="ban"}
{assign var="no_inner_div" value="true"}
{jrCore_lang skin=$_conf.jrCore_active_skin id="9" default="News" assign="page_title1"}
{assign var="page_title" value="`$_post._1|replace:"-":" "` - `$page_title1`"}
{jrCore_page_title title=$page_title}
{jrCore_include template="header.tpl"}
and to change the title to be capitalized, you'll need to modify the following templates:
news.tpl
news_list.tpl
news_slider.tpl
side_news.tpl
You'll want to find the following:
<a href="{$jamroom_url}/news_story/{$item._item_id}/{$item.blog_title_url}
and change it to this:
<a href="{$jamroom_url}/news_story/{$item._item_id}/{$item.blog_title}
basically just taking off the _url in the variable $item.blog_title_url
Note that the news.tpl file has 3 different place you need to modify, the news_list.tpl file has 4 place you'll need to modify, the news_slider.tpl has one place and instead of $item.blog_title_url its $row.blog_title_url, and the side_news.tpl has 3 places you'll need to modify.
Hope this helps,
Douglas
--
Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
updated by @douglas: 04/02/14 03:15:58PM