PluginProbe
Elementor Website Builder – more than just a page builder / 3.35.3
Elementor Website Builder – more than just a page builder v3.35.3
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 -27 4.2.03.35.3 View file →
@@ -900,20 +900,8 @@
900 900 * @since 1.9.4
901 901 * @access public
902 902 */
903 903 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 904 $google_fonts = $this->get_list_of_google_fonts_by_type();
917 905
918 906 $this->enqueue_google_fonts( $google_fonts );
919 907 $this->enqueue_icon_fonts();
@@ -1147,21 +1135,8 @@
1147 1135
1148 1136 $data = $document->get_elements_data();
1149 1137
1150 1138 /**
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 1139 * Frontend builder content data.
1165 1140 *
1166 1141 * Filters the builder content in the frontend.
1167 1142 *
@@ -1425,9 +1400,9 @@
1425 1400 'isScriptDebug' => Utils::is_script_debug(),
1426 1401 ],
1427 1402 'i18n' => [
1428 1403 'shareOnFacebook' => esc_html__( 'Share on Facebook', 'elementor' ),
1429 - 'shareOnX' => esc_html__( 'Share on X', 'elementor' ),
1404 + 'shareOnTwitter' => esc_html__( 'Share on Twitter', 'elementor' ),
1430 1405 'pinIt' => esc_html__( 'Pin it', 'elementor' ),
1431 1406 'download' => esc_html__( 'Download', 'elementor' ),
1432 1407 'downloadImage' => esc_html__( 'Download image', 'elementor' ),
1433 1408 'fullscreen' => esc_html__( 'Fullscreen', 'elementor' ),
@@ -1460,9 +1435,8 @@
1460 1435 'uploadUrl' => wp_upload_dir()['baseurl'],
1461 1436 ],
1462 1437 'nonces' => [
1463 1438 'floatingButtonsClickTracking' => wp_create_nonce( Module::CLICK_TRACKING_NONCE ),
1464 - 'atomicFormsSendForm' => wp_create_nonce( 'elementor_pro_atomic_forms_send_form' ),
1465 1439 ],
1466 1440 'swiperClass' => 'swiper',
1467 1441 ];
1468 1442