shawnhy
Hi,
You can try this tweak:
1: Duplicate this file: templates/t3bs3blank/html/layouts/joomla/content/itemtitle.php so you have a new file:
templates/t3bs3blank/html/layouts/joomla/content/itemtitle2.php
2: Open this new file and remove the link for article by changing:
<?php if ($params->get('link_titles')) : ?>
<a href="<?php echo $url ?>" itemprop="url" title="<?php echo $this->escape($item->title); ?>">
<?php echo $this->escape($item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($item->title); ?>
<meta itemprop="url" content="<?php echo $prefix.$url ?>" />
<?php endif; ?>
to:
<?php echo $this->escape($item->title); ?>
3: Go to the article layout file in template, open this file:
templates/t3bs3blank/html/com_content/article/default.php (if this file doesn't exist, you can copy the same file in T3 plugin directory: root/plugins/system/t3/base-bs3/html/com_content/article/default.php and paste to associated folder in template)
Look for this snippet of code:
<?php if ($params->get('show_title')) : ?>
<?php echo JLayoutHelper::render('joomla.content.item_title', array('item' => $this->item, 'params' => $params, 'title-tag'=>'h1')); ?>
<?php endif; ?>
change it to:
<?php if ($params->get('show_title')) : ?>
<?php echo JLayoutHelper::render('joomla.content.item_title2', array('item' => $this->item, 'params' => $params, 'title-tag'=>'h1')); ?>
<?php endif; ?>