plugins - How to change response of admin-ajax request?

Request generated by fullcalendar js, which implemented by pluginWP FullCalendar (github link for code)Request url: ht

Request generated by fullcalendar js, which implemented by plugin WP FullCalendar (github link for code)

Request url:

http://sitename/admin-ajax.php?action=WP_FullCalendar&type=event&month=2&year=2019&start=2019-02-25&end=2019-04-08&_=1553274882245

Plugin contain following code:

add_action('wp_ajax_nopriv_WP_FullCalendar', array('WP_FullCalendar','ajax') );

So i figured out that request should be handled by WP_FullCalendar::ajax method, but then i edit it directly nothing changes. I tried log some debug info into file, but seem like this method not running at all (init method still running). All caches are turned off. Author of plugin not responding.

I want to apply the_title filter on titles of events, so it will be translated by WPMultilang plugin.

What should i do to achieve this?

Request generated by fullcalendar js, which implemented by plugin WP FullCalendar (github link for code)

Request url:

http://sitename/admin-ajax.php?action=WP_FullCalendar&type=event&month=2&year=2019&start=2019-02-25&end=2019-04-08&_=1553274882245

Plugin contain following code:

add_action('wp_ajax_nopriv_WP_FullCalendar', array('WP_FullCalendar','ajax') );

So i figured out that request should be handled by WP_FullCalendar::ajax method, but then i edit it directly nothing changes. I tried log some debug info into file, but seem like this method not running at all (init method still running). All caches are turned off. Author of plugin not responding.

I want to apply the_title filter on titles of events, so it will be translated by WPMultilang plugin.

What should i do to achieve this?

Share Improve this question asked Mar 22, 2019 at 17:31 Only minusOnly minus 12 bronze badges
Add a comment  | 

1 Answer 1

Reset to default -1

WP_Fullcalendar::ajax overrided by WP_EventsManager plugin in file em-wpfc.php, if wpfc and wpem used in combination.

Here is my final code in functions.php

/**
 * Translate WP_Fullcalendar titles for events
 * @param $items
 * @return array
 */
function wp_fc_translate($items)
{
    foreach ($items as &$item) {
        $item['title'] = apply_filters('the_title', $item['title']);
    }
    return $items;
}
add_action('wpfc_events', 'wp_fc_translate');

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745658640a4638697.html

相关推荐

  • plugins - How to change response of admin-ajax request?

    Request generated by fullcalendar js, which implemented by pluginWP FullCalendar (github link for code)Request url: ht

    4小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信