Re: Ajax areas not working correctly
Found out the cause at last!
I was using a custom plugin and that was using the wrong Ajax url path – it was setting the following:
‘ajaxurl = <?php echo admin_url(‘admin-ajax.php’); ?>’
but needed to be as follows
‘upload_ajaxurl = ‘<?php echo admin_url(‘admin-ajax.php’); ?>’
Thanks for everyones help