PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / 3.13.1
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell v3.13.1
3.13.1 3.13.0 3.12.13 3.12.12 3.12.11 3.12.10 3.12.9 3.12.8 3.12.7 3.12.6 3.12.5 3.12.4 3.12.3 3.12.1 3.12.2 3.12.0 3.11.1 3.11.0 3.10.9 3.10.8 3.10.7 3.10.6 2.8.16 2.8.17 2.8.18 All 259 releases
wpfunnels / public / template / step-view.php

step-view.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at public/template/step-view.php

37 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Step view design
4 *
5 * @package
6 */
7 get_header();
8 $id = get_the_id();
9 $parent_id = get_post_meta($id, '_funnel_id', true);
10 $step_type = get_post_meta($id, '_step_type', true);
11 $order = get_post_meta($parent_id, '_steps_order', false);
12 $order = $order[0];
13 $step_class = new Wpfnl_Step_Template();
14 $next_step_id = $step_class->get_next_step($order, $id);
15 if ($next_step_id) {
16 $next_step_link = get_page_link($next_step_id);
17 }
18 ?>
19 <h1 style="text-align:center;"><?php echo get_the_title(); ?></h1>
20 <p><?php echo 'Current Page '.$id; ?></p>
21 <p><?php echo 'Current Page Type '.$step_type; ?></p>
22 <?php
23 if ($next_step_id) {
24 ?>
25 <p><?php echo 'Next Page ID '.$next_step_id; ?></p>
26 <p><?php echo 'Next Page Link '.$next_step_link; ?></p>
27 <a href="<?php echo $next_step_link; ?>">GO Next</a>
28 <?php
29 echo do_shortcode('[woocommerce_checkout]');
30 } else {
31 echo "This is probably the last page";
32 }
33 ?>
34 <?php
35 get_footer();
36 ?>
37