PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 2.7.0
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v2.7.0
2.7.0 2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 All 43 releases
← All changes | includes/dynamic-keywords/contact-segmentation/utm-source.php +3 -2 1.1.42.7.0 View file →
@@ -40,17 +40,18 @@
40 40
41 41 /**
42 42 * Render content.
43 43 *
44 + * @param array $atts array of shortcode arguments.
44 45 * @return string
45 46 */
46 - public function render_content() {
47 + public function render_content( $atts ) {
47 48 if ( empty( self::$contact_segmentation ) ) {
48 49 $this->get_data();
49 50 }
50 51
51 52 if ( ! isset( self::$contact_segmentation['utm_source'] ) ) {
52 - return;
53 + return $this->shortcode_content( $atts );
53 54 }
54 55
55 56 return self::$contact_segmentation['utm_source'];
56 57 }