# sellkit/2.7.0/includes/templates/default-canvas.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version 2.7.0. 46 lines.

- Page: https://pluginprobe.com/plugins/sellkit/2.7.0/code/includes/templates/default-canvas.php
- Raw: https://pluginprobe.com/plugins/sellkit/2.7.0/raw/includes/templates/default-canvas.php
- Modified: 2026-04-29T03:49:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sellkit/2.7.0/code/includes/templates/default-canvas.php#L10-L20`.

```php
<?php
/**
 * Template Name: Sellkit Default Canvas
 *
 * @package Sellkit
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals -- Sellkit canvas template scope.

$is_global_checkout = apply_filters( 'sellkit_global_checkout_activated', false );

if ( $is_global_checkout ) {
	remove_action( 'jupiterx_main_content_before_markup', 'jupiterx_wc_add_steps' );
}
?>

<html <?php language_attributes(); ?> class="no-js">
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="http://gmpg.org/xfn/11">
	<?php wp_head(); ?>
</head>

<body <?php body_class( 'sellkit' ); ?>>

	<?php wp_body_open(); ?>
	<?php get_header(); ?>
	<div class="sellkit-container" >

	<?php
	while ( have_posts() ) :
		the_post();
		the_content();
	endwhile;
	?>
	</div>
	<?php wp_footer(); ?>
</body>
</html>

```
