Hello
you have not said what field "Tipster" is
lets say that
- that it is select field
- that the 'name' of the field is 'tipster'
- that its id is 57
install v3.0.10-RC2g
github.com/FLEXIcontent/flexicontent-cck/releases
after you install
copy
plugins/flexicontent_fields/selectmultiple/tmpl/value_default.php
as
plugins/flexicontent_fields/selectmultiple/tmpl/value_MYcustomphp
then in field configuration select to use your custom layout, and of course edit the PHP file
at top (outside value loop)
JFactory::getApplication();
$jinput = $app->input;
$cid = $jinput->get('format', 0, 'int');
and inside value loop
Code:
foreach ($value as $v) {
add at appropriate place: (
notice the 57)
Code:
echo '
<a href="index?option=com_flexicontent&view=category&cid='.$cid.'&filter_57='.$element->value.'">View items</a>
';
NOTE you may need to make corrections to the above code
- ALSO the field "tipster" must be marked as "Filterable" otherwise the filtering will be ignored