Introducing our latest Autumn clothing range for men and women! As the temperatures drop, it’s time to layer up and get ready for the upcoming winter season. Don’t wait until it’s too late to update your wardrobe.
Explore our collection of jackets, jeans, trousers, fleece layers, and more to stay warm and stylish all season long. Shop now and stay ahead of the cold weather!
Embrace the Season with Our Autumn Clothing Selection
Our new clothing range offers clients a perfect blend of fashion-forward designs, the latest trends, and up-to-date seasonal styles. With speedy delivery and a wide selection of well-known clothing brands, you can trust us to keep you ahead of the curve.
Plus, with over a century of experience in the industry since 1901, we understand what it takes to deliver quality and style. Shop now and experience the difference with our latest collection
// Ensure the page is the Order Received (thank you) page
if (window.location.href.indexOf("order-received") !== -1) {
// Fetch transaction ID from the URL (WooCommerce appends order ID)
var urlParams = new URLSearchParams(window.location.search);
var orderID = urlParams.get('order');
var totalAmount = urlParams.get('total'); // Assuming WooCommerce appends the total amount as 'total'
// Check if order ID and total amount exist and are valid
if (orderID && totalAmount) {
// Google Ads conversion tracking script
gtag('event', 'conversion', {
'send_to': 'AW-823865827/ckOXCIC0rpgZEOPj7IgD',
'transaction_id': orderID,
'value': totalAmount, // This includes the total order amount
'currency': 'ZAR' // South African Rand (ZAR)
});
}
}