add_action('init', function() { if (!isset($_GET['run_css_regen'])) return; if (!current_user_can('manage_options')) return; $ids = [29,92,93,39,48,41,32,35,100,101,102,103,104,105,106,107,108,109]; $log = []; foreach ($ids as $id) { try { $document = \Elementor\Plugin::$instance->documents->get($id); if (!$document) { $log[$id] = 'no document'; continue; } $raw = get_post_meta($id, '_elementor_data', true); $data = json_decode($raw, true); if (!$data) { $log[$id] = 'no data'; continue; } $document->save(['elements' => $data]); $log[$id] = 'saved'; } catch (\Throwable $e) { $log[$id] = 'error: ' . $e->getMessage(); } } wp_die(esc_html(json_encode($log))); });

Author name: arthur.240688@gmail.com

It seems we can’t find what you’re looking for. Perhaps searching can help.

Scroll to Top