PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 1.6.2
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v1.6.2
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 / canvas.php

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

40 lines 640 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 Canvas
4 *
5 * @package Sellkit
6 */
7
8 // Exit if accessed directly.
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit;
11 }
12 ?>
13
14 <html <?php language_attributes(); ?> class="no-js">
15 <head>
16 <meta charset="<?php bloginfo( 'charset' ); ?>">
17 <meta name="viewport" content="width=device-width, initial-scale=1">
18 <link rel="profile" href="http://gmpg.org/xfn/11">
19 <?php wp_head(); ?>
20 </head>
21
22 <body <?php body_class( 'sellkit' ); ?>>
23
24 <?php wp_body_open(); ?>
25
26 <div class="sellkit-container" >
27
28 <?php
29 while ( have_posts() ) :
30
31 the_post();
32 the_content();
33
34 endwhile;
35 ?>
36 </div>
37 <?php wp_footer(); ?>
38 </body>
39 </html>
40