Explore Awerbuchs’ diverse accessories collections, featuring everything you need to complement your wardrobe and lifestyle. From essential socks and stylish headwear to functional bags and belts, our collection offers versatile options for everyday use. Stay hydrated on the go with our range of flasks and bottles, and keep your leather goods looking pristine with our selection of leather care products. Discover practical and stylish wallets, comfortable innersoles, and protective gaiters to complete your ensemble with Awerbuchs’ quality accessories.
Open chat
Hello 👋 Can we help you?
// 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)
});
}
}