PluginProbe
Elementor Website Builder – more than just a page builder / 3.32.3
Elementor Website Builder – more than just a page builder v3.32.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/base/widget-base.php +1 -9 4.2.23.32.3 View file →
@@ -379,9 +379,9 @@
379 379 'categories' => $this->get_categories(),
380 380 'html_wrapper_class' => $this->get_html_wrapper_class(),
381 381 'show_in_panel' => $this->show_in_panel(),
382 382 'hide_on_search' => $this->hide_on_search(),
383 - 'upsale_data' => Plugin::$instance->experiments->is_feature_active( 'e_panel_promotions' ) ? null : $this->get_upsale_data(),
383 + 'upsale_data' => $this->get_upsale_data(),
384 384 'is_dynamic_content' => $this->is_dynamic_content(),
385 385 'has_widget_inner_wrapper' => $this->has_widget_inner_wrapper(),
386 386 ];
387 387
@@ -694,16 +694,8 @@
694 694 * @access public
695 695 */
696 696 public function render_plain_content() {
697 697 $this->render_content();
698 - }
699 -
700 - public function render_markdown(): string {
701 - ob_start();
702 - $this->render_content();
703 - $html = ob_get_clean();
704 -
705 - return wp_strip_all_tags( $html );
706 698 }
707 699
708 700 /**
709 701 * Before widget rendering.