Hi, I'm using the JA Mega filter on this page https://www.endourology.org/fellowships/clinical#sort=name&sortdir=asc
Yesterday I updated the plugin version.
Before that, when I clicked on any of the links it would open a link that looks like this
https://www.endourology.org//fellowships/clinical/details/advent-health-global-robotics-institute.
Now, it's generating a different link like this, that redirects to the homepage
https://www.endourology.org/?view=article&id=380
I'm using a custom layout, the system doesn't let me attach it so I'm pasting it at the end.
Perhaps the {url} field I was using has changed with the upgrade and I should use something else?
Thanks for your help.
<?php
/*
- ------------------------------------------------------------------------
- JA Filter Plugin - Docman
- ------------------------------------------------------------------------
- Copyright (C) 2004-2016 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
- @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
- Author: J.O.O.M Solutions Co., Ltd
- Websites: http://www.joomlart.com - http://www.joomlancers.com
- This file may not be redistributed in whole or significant part.
- ------------------------------------------------------------------------
*/
defined('JEXEC') or die;
$params = json_decode($this->item['params']);
?>
<div class="clearfix">
{#data}
{@info:data}
<div class="product-item-cell {.class}">
{@select key=._class}
{@eq value="name"}
<a href="{url}" class="product-item-link">
{name|s}
</a>
{/eq}
{@eq value="desc"}
{desc|s}
{/eq}
{@none}
{.value|s}
{/none}
{/select}
</div>
{/info}
{/data}
</div>