| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/ipprint/wp-content/plugins/cartflows/modules/checkout/templates/ |
Upload File : |
<?php
/**
* Flow
*
* @package CartFlows
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="robots" content="noindex">
<title><?php wp_title( '-', true, 'right' ); ?><?php bloginfo( 'name' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="wrapper">
<header class="header">
</header>
<div class="main-container">
<div class="checkout-forms">
<!-- CHECKOUT SHORTCODE -->
<?php
$checkout_html = do_shortcode( '[woocommerce_checkout]' );
if (
empty( $checkout_html ) ||
trim( $checkout_html ) == '<div class="woocommerce"></div>'
) {
echo esc_html__( 'Your cart is currently empty.', 'cartflows' );
} else {
// Ignoring the escaping rule as we are echoing shortcode.
echo $checkout_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
?>
<!-- END CHECKOUT SHORTCODE -->
</div>
</div>
<footer class="footer">
<p><?php esc_html_e( 'Copyright ©', 'cartflows' ); ?>
<?php
echo esc_html( gmdate( 'Y' ) );
echo ' ' . esc_html( get_bloginfo( 'name' ) );
?>
- <?php esc_html_e( 'All Rights Reserved', 'cartflows' ); ?></p>
</footer>
</div>
<div class="wcf-hide">
<?php wp_footer(); ?>
</div>
</body>
</html>