/home/vianto5/cititower.mx/wp-content/plugins/siteorigin-panels/compat
NameSizeModeActions
js/-0755rm
acf-widgets.php42300644editdlrm
aioseo.php3980644editdlrm
amp.php2970644editdlrm
events-manager.php33020644editdlrm
gravity-forms.php6620644editdlrm
jetpack.php13350644editdlrm
layout-block.php98950644editdlrm
lazy-load-backgrounds.php20190644editdlrm
livemesh.php8000644editdlrm
pagelayer.php12520644editdlrm
polylang.php36660644editdlrm
popup-maker.php9310644editdlrm
rank-math.php5040644editdlrm
seo.php8880644editdlrm
seopress.php16580644editdlrm
vantage.php14050644editdlrm
widget-options.php10590644editdlrm
yikes.php2040644editdlrm
yoast.php26160644editdlrm
Edit: /home/vianto5/cititower.mx/wp-content/plugins/siteorigin-panels/compat/events-manager.php (3302B)
is_pb_removed = true; add_filter( 'siteorigin_panels_filter_content_enabled', '__return_false' ); } /** * Re-enable Page Builder for `the_content` filter if it * was disabled at the start of the loop. * * @return void */ public function loop_end() { if ( $this->is_pb_removed ) { remove_filter( 'siteorigin_panels_filter_content_enabled', '__return_false' ); $this->is_pb_removed = false; } } /** * Flag Events Manager duplication so we can avoid unsafe SQL inserts for panels_data. * * @return void */ public function duplicate_pre() { $this->is_duplicating = true; } /** * Remove Page Builder data from Events Manager's raw SQL duplication payload. * * @param array $event_meta Event post meta. * * @return array */ public function filter_duplicate_meta( $event_meta ) { if ( ! $this->is_duplicating || ! is_array( $event_meta ) ) { return $event_meta; } unset( $event_meta['panels_data'] ); return $event_meta; } /** * Copy Page Builder data to the duplicated event using safe WordPress APIs. * * @param mixed $duplicated_event The duplicated event object, or false on failure. * @param mixed $source_event The original source event object. * * @return mixed */ public function duplicate_copy_panels_data( $duplicated_event, $source_event ) { $this->is_duplicating = false; if ( empty( $duplicated_event ) || ! is_object( $duplicated_event ) || ! is_object( $source_event ) || empty( $duplicated_event->post_id ) || empty( $source_event->post_id ) ) { return $duplicated_event; } $source_panels_data = get_post_meta( (int) $source_event->post_id, 'panels_data', true ); if ( empty( $source_panels_data ) ) { return $duplicated_event; } $source_panels_data = map_deep( $source_panels_data, array( 'SiteOrigin_Panels_Admin', 'double_slash_string' ) ); update_post_meta( (int) $duplicated_event->post_id, 'panels_data', $source_panels_data ); return $duplicated_event; } } SiteOrigin_Panels_Compat_Events_Manager::single();