wpfc_ajax filter
-
I need to apply some function on titles before they appear. What have i tried is to use
wpfc_ajaxfilter, which i found in aWP_Fullcalendar::ajax(), bun nothing changes.My code in
functions.php:function gs_tranalate_wpfc($items) { foreach ($items as &$item) { $items['title'] = 'test'; } return $items; } add_filter( 'wpfc_ajax', 'gs_tranalate_wpfc' );Also i tried to temporary modify plugin code to see difference, but
WP_Fullcalendar::ajax()not fired at all, butWP_Fullcalendar::init()does.Edit: now i know that
funcitons.phpruns after plugins, so it will not work. Still i can not modify Xhr result.
The topic ‘wpfc_ajax filter’ is closed to new replies.