PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 1.7.9
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v1.7.9
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 1.8.1 All 42 releases
sellkit / includes / funnel / steps / children / downsell.php

downsell.php in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster 1.7.9, at includes/funnel/steps/children/downsell.php

26 lines 440 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Sellkit\Funnel\Steps;
4
5 use Sellkit\Funnel\Analytics\Data_Updater;
6 use Sellkit_Funnel;
7 use Sellkit\Funnel\Steps\Upsell;
8
9 defined( 'ABSPATH' ) || die();
10
11 /**
12 * Class Sellkit Downsell.
13 *
14 * @since 1.5.0
15 */
16 class Downsell extends Upsell {
17 /**
18 * Upsell constructor.
19 *
20 * @since 1.5.0
21 */
22 public function __construct() { // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
23 parent::__construct();
24 }
25 }
26