Conversation
supportHi, Is it possible to do some kind of filtering so viewers can select ALL or REGULATORY on one page? Like this: https://isofolmedical.com/sv/nyheter-press/ Would be a very cool future feature!
I want to show all press releases – so the setting for displaying only regulatory isn’t fitting. But it doesn’t look like there’s a JSON feed for regulatory only…
Can I get something like this ? https://cantargia.com/en/newsroom/news-and-press-releases With an (R) before the regulatory releases
It would be really easy to do this by copying the cision-block.php template in to the root of you active theme and modifying it a little bit to check if an item is a regulatory or non-regulatory release. Something like this: echo ‘<h1>’ . ($item->IsRegulatory ? ‘R’ : ”) . $item->Title . ‘<h1>’;
I want to show all press releases – so the setting for displaying only regulatory isn’t fitting. But it doesn’t look like there’s a JSON feed for regulatory only…
Can I get something like this ? https://cantargia.com/en/newsroom/news-and-press-releases With an (R) before the regulatory releases
It would be really easy to do this by copying the cision-block.php template in to the root of you active theme and modifying it a little bit to check if an item is a regulatory or non-regulatory release. Something like this: echo ‘<h1>’ . ($item->IsRegulatory ? ‘R’ : ”) . $item->Title . ‘<h1>’;