Create Report Registrar Función Metadata Ajax

function enqueue_admin_ajax() { // Aquí no estamos encolando un archivo js específico, sólo pasando datos a JavaScript wp_localize_script(‘jquery’, ‘myAjax’, array( // ‘jquery’ porque sabemos que jQuery ya está cargado en muchos temas ‘ajaxurl’ => admin_url(‘admin-ajax.php’) )); } add_action(‘wp_enqueue_scripts’, ‘enqueue_admin_ajax’);Continue reading

Create Report Insert Polygon Ajax

add_action(‘frm_after_create_entry’, ‘copy_into_my_table’, 20, 2); function copy_into_my_table($entry_id, $form_id){ if($form_id == 2){ $data = (object)$_POST; $geoJSON = $data->item_meta[‘8′]; $rounded_area = $data->item_meta[’26’]; $tam_entry_id = $data->item_meta[‘9’]; global $postgis; if (!$postgis) { error_log(“Error: No se pudo establecer una conexión con la base de datos.”); return;…Continue reading

Complete Client Auto Updater? v2 with Maint Mode (Untested)

// Schedule daily cron jobs for upcoming and past events if (!wp_next_scheduled(‘update_upcoming_events_cron_hook’)) { wp_schedule_event(time(), ‘daily’, ‘update_upcoming_events_cron_hook’); } if (!wp_next_scheduled(‘update_past_events_cron_hook’)) { wp_schedule_event(time() + 60, ‘daily’, ‘update_past_events_cron_hook’); } // Attach functions to the cron hooks add_action(‘update_upcoming_events_cron_hook’, ‘update_upcoming_events_cron_function’); add_action(‘update_past_events_cron_hook’, ‘update_past_events_cron_function’); // Add a…Continue reading

Migrate Order Actions Completed Date from Notes

add_action( ‘shutdown’, ‘advads_schedule_order_notes_to_set_actions_run’ ); /** * Schedule the order notes to set actions run cron event. * * @return void */ function prefix_schedule_order_notes_to_set_actions_run() { // This option is added when no more notes can be found. if ( get_option( ‘prefix_use_order_notes_to_set_actions_run’…Continue reading

Stop EDD Mailchimp Sync

add_action( ‘admin_footer’, ‘prefix_mailchimp_stop_sync’ ); /** * Stop the Mailchimp sync from running. * This is a temporary function to stop the sync from running and can be deleted once the sync is stopped. * * @return void */ function prefix_mailchimp_stop_sync()…Continue reading