Ajax call in Wordpress not working

2 replies
Hi guys,

looking for anyone who can shed any light on this wee problem i'm having with a simple currency conversion plugin.

Happy to buy anyone who can solve this "a beer"

plugins - Problem running Ajax in Wordpress - WordPress - Stack Exchange

Many thanks in advance
#ajax #call #wordpress #working
  • Profile picture of the author stevemack
    Check for permissions as lots of plugins neglect to check for sufficient permission for AJAX requests. Always usecurrent_user_can() to make sure the request is made by an authorized user.
    {{ DiscussionBoard.errors[5618985].message }}
  • Profile picture of the author ImAdmirer
    Try adding this line in the wp-config.php at the top. This should work.
    Code:
    define( 'CONCATENATE_SCRIPTS', false );
    WP Admin would run slower because of this so you may remove it after few days and test. This also eliminate any stale network cache.
    {{ DiscussionBoard.errors[5619105].message }}

Trending Topics