Shared host and bulk requests [closed]
I have a plugin in wordpress where there is a button in the plugin page, when the button is clicked the ajax is executed:
jQuery(document).ready(function($){
$('#id_reference_equalize_stock').on('click', function (){
$.ajax({
method: "POST",
url: "/wp-admin/admin-ajax.php",
data: {
action: 'equalize_stock_requested'
}
}
)}
)
}...