Remove link
Design and Skin Customization
Hello,
The index_core_blog_list.tpl is a skin template, I think Michael may have confused it with the item_list.tpl, item_index.tpl etc. templates found in the modules template folder.
You would need to remove the link code from the title variable.
So in your skins/Elastic2/index_core_blog_list.tpl file, find this:
<h1><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.blog_title_url}">{$item.blog_title}</a></h1>
and change it to this:
<h1>{$item.blog_title}</h1>
There is also a read more link near the bottom of that template file, but it checks to see if you are using a pagebreak in the blog and if not it will not show the read more link, so as long as you are not using pagebreaks in your blogs you should be good. Otherwise you may want to find and remove this code as well:
{* check to see if the blog has a pagebreak in it *}
{if strpos($item.blog_text,'<!-- pagebreak -->')}
<span class="info"><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.blog_title_url}">{jrCore_lang module="jrBlog" id="25" default="Read more"} »</a></span>
{/if}
Hope this helps!