Hello,
The code for category blog item is:
<div class="col-sm-<?php echo round((12 / $this->columns));?>"
onclick="window.location = '<?php echo the code to create item article link';">
<div class="item column-<?php echo $rowcount;?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?>"
itemprop="blogPost" itemscope="" itemtype="http://schema.org/BlogPosting">
<?php
$this->item = &$item;
echo $this->loadTemplate('item');
?>
</div> <!-- end item -->
</div>
I want to add javascript onclick event for every blog item <div> with link to article. How to write here the php code which will generate correct article link here.
Jaak