PluginProbe
Elementor Website Builder – more than just a page builder / 3.34.1
Elementor Website Builder – more than just a page builder v3.34.1
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | includes/frontend.php +1 -32 4.2.23.34.1 View file →
@@ -692,13 +692,8 @@
692 692
693 693 $css_file = Post_CSS::create( get_the_ID() );
694 694 $css_file->enqueue();
695 695 }
696 - } else {
697 - $post_id = Plugin::$instance->preview->get_post_id();
698 - if ( $post_id ) {
699 - do_action( 'elementor/post/render', $post_id );
700 - }
701 696 }
702 697
703 698 do_action( 'elementor/frontend/after_enqueue_post_styles' );
704 699 }
@@ -900,20 +895,8 @@
900 895 * @since 1.9.4
901 896 * @access public
902 897 */
903 898 public function print_fonts_links() {
904 - /**
905 - * Register font styles.
906 - *
907 - * Fires before fonts are processed, allowing add-ons to register
908 - * proper stylesheets for their custom font types via the WordPress API.
909 - *
910 - * @since 3.29.0
911 - *
912 - * @param string[] $fonts_to_enqueue List of font families to be enqueued.
913 - */
914 - do_action( 'elementor/fonts/register_styles', $this->fonts_to_enqueue );
915 -
916 899 $google_fonts = $this->get_list_of_google_fonts_by_type();
917 900
918 901 $this->enqueue_google_fonts( $google_fonts );
919 902 $this->enqueue_icon_fonts();
@@ -1147,21 +1130,8 @@
1147 1130
1148 1131 $data = $document->get_elements_data();
1149 1132
1150 1133 /**
1151 - * Filters document elements data after loading.
1152 - *
1153 - * Allows modification of elements data when loading (not saving).
1154 - * Useful for migrations, transformations, or data enrichment.
1155 - *
1156 - * @since 4.0.0
1157 - *
1158 - * @param array $data The elements data array.
1159 - * @param \Elementor\Core\Base\Document $document The document instance.
1160 - */
1161 - $data = apply_filters( 'elementor/document/load/data', $data, $document );
1162 -
1163 - /**
1164 1134 * Frontend builder content data.
1165 1135 *
1166 1136 * Filters the builder content in the frontend.
1167 1137 *
@@ -1425,9 +1395,9 @@
1425 1395 'isScriptDebug' => Utils::is_script_debug(),
1426 1396 ],
1427 1397 'i18n' => [
1428 1398 'shareOnFacebook' => esc_html__( 'Share on Facebook', 'elementor' ),
1429 - 'shareOnX' => esc_html__( 'Share on X', 'elementor' ),
1399 + 'shareOnTwitter' => esc_html__( 'Share on Twitter', 'elementor' ),
1430 1400 'pinIt' => esc_html__( 'Pin it', 'elementor' ),
1431 1401 'download' => esc_html__( 'Download', 'elementor' ),
1432 1402 'downloadImage' => esc_html__( 'Download image', 'elementor' ),
1433 1403 'fullscreen' => esc_html__( 'Fullscreen', 'elementor' ),
@@ -1460,9 +1430,8 @@
1460 1430 'uploadUrl' => wp_upload_dir()['baseurl'],
1461 1431 ],
1462 1432 'nonces' => [
1463 1433 'floatingButtonsClickTracking' => wp_create_nonce( Module::CLICK_TRACKING_NONCE ),
1464 - 'atomicFormsSendForm' => wp_create_nonce( 'elementor_pro_atomic_forms_send_form' ),
1465 1434 ],
1466 1435 'swiperClass' => 'swiper',
1467 1436 ];
1468 1437