1<?php2if (!defined("WHMCS"))3die("This file cannot be accessed directly");4use WHMCS\Database\Capsule;56add_hook('ClientAreaPageCart', 1, function($vars) {78if (isset($vars['filename']) && $vars['filename'] == "cart") {910if ($_GET['a'] == "view") {1112if (count($_SESSION['cart']['products']) > 1)13{14unset($_SESSION['cart']['products'][0]);15echo '<script>location.reload();</script>';1617}18// print_r($_SESSION);die();19}20}2122});23