- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
81 lines
2.4 KiB
JavaScript
Executable File
81 lines
2.4 KiB
JavaScript
Executable File
jQuery(document).ready(function(){
|
|
document.getElementById('click_get_started').onclick = function () {
|
|
jQuery(this).html('<img src = ' + `${window.smack_nonce_object.imagePath}ajax-loader.gif`+ '>');
|
|
var addons = ['Users','WooCommerce','Exporter'];
|
|
jQuery.ajax({
|
|
type: 'POST',
|
|
url: smack_nonce_object.url,
|
|
data: {
|
|
'action' : 'install_plugins',
|
|
'addons' : addons,
|
|
'securekey' : smack_nonce_object.nonce,
|
|
},
|
|
|
|
success: function(data){
|
|
window.location.replace(window.location.origin + ajaxurl+ '/../admin.php?page=com.smackcoders.csvimporternew.menu');
|
|
},
|
|
error: function(errorThrown){
|
|
}
|
|
});
|
|
}
|
|
|
|
$("#Useraddon").click(function() {
|
|
jQuery(this).html('<img src = ' + `${window.smack_nonce_object.imagePath}ajax-loader.gif`+ '>');
|
|
jQuery.ajax({
|
|
type: 'POST',
|
|
url: smack_nonce_object.url,
|
|
data: {
|
|
'action' : 'install_addon',
|
|
'addons' : 'Users',
|
|
'securekey' : smack_nonce_object.nonce,
|
|
},
|
|
|
|
success: function(response){
|
|
$("#Useraddon").html('Activated');
|
|
},
|
|
error: function(errorThrown){
|
|
}
|
|
});
|
|
});
|
|
|
|
$("#WooCommerceaddon").click(function() {
|
|
jQuery(this).html('<img src = ' + `${window.smack_nonce_object.imagePath}ajax-loader.gif`+ '>');
|
|
jQuery.ajax({
|
|
type: 'POST',
|
|
url: smack_nonce_object.url,
|
|
data: {
|
|
'action' : 'install_addon',
|
|
'addons' : 'WooCommerce',
|
|
'securekey' : smack_nonce_object.nonce,
|
|
},
|
|
|
|
success: function(response){
|
|
$("#WooCommerceaddon").html('Activated');
|
|
},
|
|
error: function(errorThrown){
|
|
}
|
|
});
|
|
});
|
|
|
|
$("#Exporteraddon").click(function() {
|
|
jQuery(this).html('<img src = ' + `${window.smack_nonce_object.imagePath}ajax-loader.gif`+ '>');
|
|
jQuery.ajax({
|
|
type: 'POST',
|
|
url: smack_nonce_object.url,
|
|
data: {
|
|
'action' : 'install_addon',
|
|
'addons' : 'Exporter',
|
|
'securekey' : smack_nonce_object.nonce,
|
|
},
|
|
|
|
success: function(response){
|
|
$("#Exporteraddon").html('Activated');
|
|
},
|
|
error: function(errorThrown){
|
|
}
|
|
});
|
|
});
|
|
|
|
});
|
|
|