PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / trunk
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster vtrunk
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 / templates / default-canvas.php

default-canvas.php in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster trunk, at includes/templates/default-canvas.php

46 lines 964 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template Name: Sellkit Default Canvas
4 *
5 * @package Sellkit
6 */
7
8 // Exit if accessed directly.
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit;
11 }
12
13 // phpcs:disable WordPress.NamingConventions.PrefixAllGlobals -- Sellkit canvas template scope.
14
15 $is_global_checkout = apply_filters( 'sellkit_global_checkout_activated', false );
16
17 if ( $is_global_checkout ) {
18 remove_action( 'jupiterx_main_content_before_markup', 'jupiterx_wc_add_steps' );
19 }
20 ?>
21
22 <html <?php language_attributes(); ?> class="no-js">
23 <head>
24 <meta charset="<?php bloginfo( 'charset' ); ?>">
25 <meta name="viewport" content="width=device-width, initial-scale=1">
26 <link rel="profile" href="http://gmpg.org/xfn/11">
27 <?php wp_head(); ?>
28 </head>
29
30 <body <?php body_class( 'sellkit' ); ?>>
31
32 <?php wp_body_open(); ?>
33 <?php get_header(); ?>
34 <div class="sellkit-container" >
35
36 <?php
37 while ( have_posts() ) :
38 the_post();
39 the_content();
40 endwhile;
41 ?>
42 </div>
43 <?php wp_footer(); ?>
44 </body>
45 </html>
46