X7ROOT File Manager
Current Path:
/home/notabjze/digitalcontentmentors.com/wp-content/themes/elessi-theme
home
/
notabjze
/
digitalcontentmentors.com
/
wp-content
/
themes
/
elessi-theme
/
ðŸ“
..
📄
404.php
(1.24 KB)
📄
README.txt
(607 B)
ðŸ“
admin
📄
archive.php
(5.82 KB)
ðŸ“
assets
📄
comments.php
(2 KB)
📄
content-page.php
(499 B)
📄
content-single.php
(2.88 KB)
📄
content.php
(2.91 KB)
ðŸ“
cores
ðŸ“
dokan
📄
favicon.ico
(1.12 KB)
📄
favicon.png
(1.26 KB)
📄
footer-modern.php
(217 B)
📄
footer.php
(297 B)
ðŸ“
footers
📄
functions.php
(4.37 KB)
📄
header-modern.php
(1013 B)
📄
header.php
(1.27 KB)
ðŸ“
headers
📄
image.php
(7.14 KB)
ðŸ“
includes
📄
index.php
(2.35 KB)
ðŸ“
languages
📄
no-results.php
(1.2 KB)
ðŸ“
options
📄
page-blank.php
(300 B)
📄
page-checkout.php
(5.57 KB)
📄
page-left-sidebar.php
(1.22 KB)
📄
page-my-account.php
(2.01 KB)
📄
page-right-sidebar.php
(1.24 KB)
📄
page-shopping-cart.php
(4.02 KB)
📄
page-view-compare.php
(751 B)
📄
page-visual-composer.php
(283 B)
📄
page.php
(311 B)
📄
screenshot.jpg
(111.75 KB)
📄
search.php
(2.92 KB)
📄
searchform.php
(4.42 KB)
📄
sidebar.php
(276 B)
📄
single-portfolio.php
(1.28 KB)
📄
single.php
(2.27 KB)
📄
style-elementor.css
(4.35 KB)
📄
style-rtl.css
(88.48 KB)
📄
style.css
(424.95 KB)
📄
update.txt
(44.76 KB)
ðŸ“
vc_templates
ðŸ“
widgets
ðŸ“
woocommerce
📄
wpbakery-frontend-editor.css
(73 B)
Editing: page-checkout.php
<?php /* Template name: Page Checkout */ if (!defined('ABSPATH')) : exit; // Exit if accessed directly endif; defined('NASA_CHECKOUT_LAYOUT') or define('NASA_CHECKOUT_LAYOUT', 'default'); $order_revice = is_wc_endpoint_url('order-received'); /* Modern Checkout */ if (!$order_revice && NASA_CHECKOUT_LAYOUT == 'modern') : get_header('modern'); do_action('nasa_before_checkout_modern'); ?> <div class="page-checkout-modern"> <?php if (shortcode_exists('woocommerce_checkout')): global $post; echo !isset($post->post_content) || !has_shortcode($post->post_content, 'woocommerce_checkout') ? do_shortcode('[woocommerce_checkout]') : ''; endif; while (have_posts()) : the_post(); the_content(); endwhile; wp_reset_postdata(); ?> </div> <?php do_action('nasa_after_checkout_modern'); get_footer('modern'); else : /* Default Checkout || Order revice */ get_header(); ?> <div class="container-wrap page-checkout"> <?php if (NASA_CHECKOUT_LAYOUT != 'modern') : ?> <div class="order-steps"> <div class="row"> <div class="large-12 columns"> <?php if (function_exists('is_wc_endpoint_url')) : ?> <?php if (!$order_revice) : ?> <div class="checkout-breadcrumb rtl-text-right"> <div class="title-cart"> <a href="<?php echo esc_url(wc_get_cart_url()); ?>" title="<?php esc_attr_e('Shopping Cart', 'elessi-theme'); ?>"> <h3 class="hide-for-small hide-for-medium ct-1st">01</h3> <h4 class="ct-2nd"><?php esc_html_e('Shopping Cart', 'elessi-theme'); ?></h4> <p class="hide-for-small ct-3th"><?php esc_html_e('Manage Your Items List', 'elessi-theme'); ?></p> </a> </div> <div class="title-checkout"> <h3 class="hide-for-small hide-for-medium ct-1st">02</h3> <h4 class="ct-2nd"><?php esc_html_e('Checkout Details', 'elessi-theme'); ?></h4> <p class="hide-for-small ct-3th"><?php esc_html_e('Checkout Your Items List', 'elessi-theme'); ?></p> </div> <div class="title-thankyou"> <h3 class="hide-for-small hide-for-medium ct-1st">03</h3> <h4 class="ct-2nd"><?php esc_html_e('Order Complete', 'elessi-theme'); ?></h4> <p class="hide-for-small ct-3th"><?php esc_html_e('Review Your Order', 'elessi-theme'); ?></p> </div> </div> <?php else : ?> <div class="checkout-breadcrumb rtl-text-right"> <div class="title-cart"> <h3 class="hide-for-small hide-for-medium ct-1st">01</h3> <h4 class="ct-2nd"><?php esc_html_e('Shopping Cart', 'elessi-theme'); ?></h4> <p class="hide-for-small ct-3th"><?php esc_html_e('Manage Your Items List', 'elessi-theme'); ?></p> </div> <div class="title-checkout"> <h3 class="hide-for-small hide-for-medium ct-1st">02</h3> <h4 class="ct-2nd"><?php esc_html_e('Checkout Details', 'elessi-theme'); ?></h4> <p class="hide-for-small ct-3th"><?php esc_html_e('Checkout Your Items List', 'elessi-theme'); ?></p> </div> <div class="title-thankyou nasa-complete"> <h3 class="hide-for-small hide-for-medium ct-1st">03</h3> <h4 class="ct-2nd"><?php esc_html_e('Order Complete', 'elessi-theme'); ?></h4> <p class="hide-for-small ct-3th"><?php esc_html_e('Review Your Order', 'elessi-theme'); ?></p> </div> </div> <?php endif; ?> <?php endif; ?> </div> </div> </div> <?php endif; ?> <div class="row checkout-data margin-top-30 mobile-margin-top-0"> <div id="content" class="large-12 columns"> <?php if (shortcode_exists('woocommerce_checkout')): global $post; echo !isset($post->post_content) || !has_shortcode($post->post_content, 'woocommerce_checkout') ? do_shortcode('[woocommerce_checkout]') : ''; endif; while (have_posts()) : the_post(); the_content(); endwhile; wp_reset_postdata(); ?> </div> </div> </div> <?php get_footer(); endif;
Upload File
Create Folder