1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
$total_price = 0;
?>
<div class="icon">
<a href="javascript::" onclick="showCartPage()"><i class="fas fa-shopping-cart"></i></a>
<span class="number"><?php echo sizeof($this->session->userdata('cart_items')); ?></span>
</div>
<!-- Cart Dropdown goes here -->
<div class="dropdown course-list-dropdown corner-triangle top-right" style="display: none;"> <!-- Just remove the display none from the css to make it work -->
<div class="list-wrapper">
<div class="item-list">
<ul>
<?php foreach ($this->session->userdata('cart_items') as $cart_item):
$course_details = $this->crud_model->get_course_by_id($cart_item)->row_array();
$instructor_details = $this->user_model->get_all_user($course_details['user_id'])->row_array();
?>
<li>
<div class="item clearfix">
<div class="item-image">
<a href="">
<img src="<?php echo $this->crud_model->get_course_thumbnail_url($cart_item);?>" alt="" class="img-fluid">
</a>
</div>
<div class="item-details">
<a href="">
<div class="course-name"><?php echo $course_details['title']; ?></div>
<div class="instructor-name"><?php echo $instructor_details['first_name'].' '.$instructor_details['last_name']; ?></div>
<div class="item-price">
<?php if ($course_details['discount_flag'] == 1):
$total_price += $course_details['discounted_price'];?>
<span class="current-price"><?php echo currency($course_details['discounted_price']); ?></span>
<span class="original-price"><?php echo currency($course_details['price']); ?></span>
<?php else:
$total_price += $course_details['price'];?>
<span class="current-price"><?php echo currency($course_details['price']); ?></span>
<?php endif; ?>
</div>
</a>
</div>
</div>
</li>
<?php endforeach; ?>
</ul>
</div>
<div class="dropdown-footer">
<div class="cart-total-price clearfix">
<span><?php echo get_phrase('total'); ?>:</span>
<div class="float-right">
<span class="current-price"><?php echo currency($total_price); ?></span>
<!-- <span class="original-price">$94.99</span> -->
</div>
</div>
<a href = "<?php echo site_url('home/shopping_cart'); ?>"><?php echo get_phrase('go_to_cart'); ?></a>
</div>
</div>
<div class="empty-box text-center d-none">
<p><?php echo get_phrase('your_cart_is_empty') ?>.</p>
<a href="">Keep Shopping</a>
</div>
</div>
<script type="text/javascript">
function showCartPage() {
window.location.replace("<?php echo site_url('home/shopping_cart'); ?>");
}
</script>