Commit inicial - WordPress Análisis de Precios Unitarios

- 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>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,80 @@
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){
}
});
});
});