2015-01-05, 20:38:13
The Calendar plugin has issues with some plugins and code snippets, e.g. functions like getPageContent , News Manager Addons' nm_custom_... display functions and possibly other plugins (those that use GetSimple's 'content' filter)
(Reported by user and olsv64 at the Russian forum)
A workaround: insert this code in your template or component (before the display function):
(Reported by user and olsv64 at the Russian forum)
A workaround: insert this code in your template or component (before the display function):
Code:
<?php
global $filters;
foreach ($filters as $i => $row)
if ($row['function'] == 'c_client_calendar')
unset($filters[$i]);
?>