Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: apiservices.js
$(document).ready(function() { $('#btnSyncPrice').click(function () { $('#imgCPLdr').ajaxStart(function() { $('#imgCPLdr').show(); }).ajaxStop(function() { $('#imgCPLdr').hide(); }); var syncAll = 0; console.log(baseurl); if(document.getElementById('chkSync').checked) syncAll = 1; $.post(baseurl+apanel_name+"/settings/ajxcostprice", { apiId:$('#id').val(), syncAll:syncAll, reqIds:$('#reqIds').val(), sc:$('#sc').val(), purpose:'getCPs', //csrf_token_name:csrf_token_hash }, function(response){ if(response) { if(response.status == 1) { window.location.href = baseurl+apanel_name+'/settings/apiservices?id='+$('#id').val()+'&sc='+$('#sc').val()+'&an='+$('#an').val()+'&msg=1'; }else{ showStickyErrorToast(response.message, '', 'error'); } } }, 'json'); }) });