-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.php
More file actions
39 lines (36 loc) · 1.67 KB
/
Copy pathfaq.php
File metadata and controls
39 lines (36 loc) · 1.67 KB
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
<?php
$pageTitle = 'FAQs';
require_once 'config/database.php';
require_once 'includes/header.php';
?>
<div class="static-page">
<h1>Frequently Asked Questions</h1>
<p class="subtitle">Find answers to common questions</p>
<div class="static-content faq-list">
<div class="faq-item">
<h3>How do I place an order?</h3>
<p>Browse our products, add items to your cart, and proceed to checkout. You'll need to create an account or log in before completing your order.</p>
</div>
<div class="faq-item">
<h3>What payment methods do you accept?</h3>
<p>We currently offer cash on delivery for all orders within Ghana.</p>
</div>
<div class="faq-item">
<h3>How long does shipping take?</h3>
<p>Delivery typically takes 2-5 business days within Accra and 5-10 business days for other regions in Ghana.</p>
</div>
<div class="faq-item">
<h3>What is your return policy?</h3>
<p>You may return unused items within 14 days of delivery for a full refund. Items must be in their original packaging.</p>
</div>
<div class="faq-item">
<h3>Can I cancel my order?</h3>
<p>You can cancel your order if it hasn't been processed yet. Contact our support team for assistance.</p>
</div>
<div class="faq-item">
<h3>How do I track my order?</h3>
<p>Once your order is placed, you can view its status from your <a href="orders.php">Orders</a> page. Statuses include: Pending, Processing, Completed, and Cancelled.</p>
</div>
</div>
</div>
<?php require_once 'includes/footer.php'; ?>