Browse
For agents
About
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster
/
1.7.4
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster
v1.7.4
Switch version
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
Overview
Code
sellkit
/
includes
/
funnel
/
steps
/
children
/
optin.php
optin.php
in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster 1.7.4, at includes/funnel/steps/children/optin.php
24 lines
379 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
Sellkit
\
Funnel
\
Steps
;
4
5
use
Sellkit
\
Funnel
\
Steps
\
Sales_Page
;
6
7
defined
(
'
ABSPATH
'
)
||
die
(
)
;
8
9
/**
10
* Class Sellkit Optin.
11
*
12
*
@since
1.5.0
13
*/
14
class
Optin
extends
Sales_Page
{
15
/**
16
* Upsell constructor.
17
*
18
*
@since
1.5.0
19
*/
20
public
function
__construct
(
)
{
//
phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found
21
parent
::
__construct
(
)
;
22
}
23
}
24