Ajax call in Wordpress not working

by 2 replies
3
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
#programming #ajax #call #wordpress #working
  • 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.
  • 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.

Next Topics on Trending Feed