PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / trunk
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell vtrunk
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 / admin / modules / product / views / view.php

view.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell trunk, at admin/modules/product/views/view.php

30 lines 839 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Product view
4 *
5 * @package
6 */
7
8 $products = $this->get_products();
9
10 $type = '';
11 if (isset($_GET['step_id'])) {
12 $step_id = sanitize_text_field( $_GET['step_id'] );
13 $type = get_post_meta( $step_id, '_step_type', true );
14 }
15 ?>
16 <div class="single-product">
17 <?php require WPFNL_DIR . '/admin/partials/icons/search-icon.php'; ?>
18 <select class="wpfnl-product-search" id="wpfnl-checkout-products" name="wpfnl_step_product_ids" data-placeholder="<?php esc_attr_e('Search for products', 'wpfnl'); ?>">
19 <?php
20 if ($type == 'upsell' || $type == 'downsell') {
21 if ($products[0]) {
22 ?>
23 <option value="<?php echo $products[0]['id']; ?>" selected><?php echo $products[0]['name']; ?></option>
24 <?php
25 }
26 }
27 ?>
28 </select>
29 </div>
30