We all love a clean car but going to the actual service provider can be a hassle. Wating in the long queue for your turn not only feels frustrating but is also a pretty time consuming task. How about booking your car wash service?
Find the right car wash service at your door steps in just 60 seconds. Wondering how? Schmicko is the perfect mobile car detailing service that will come to your home on site. It offers high-quality car care services and comes with affordable pricing. Today we got a chance to cover the success story of Schmicko Car Detailing Melbourne. Let’s discover how Social Champ is helping this car detailing services in the highly competitive world.
How Did You Get the Idea for Your Business? What Services Do You Offer?
Great question! Being quite the car enthusiast myself, I at the time, purchased a new car and fell in love with washing and detailing it to ensure that it can look the best it can be. However, over time as I got more consumed with work, the weekly car wash became a monthly routine then soon enough, neglected for months and I knew straight away that there had to be a better solution. Welcome, Schmicko Car Detailing Melbourne – your on demand booking platform for mobile car care services.
We have since grown to offer regular maintenance washes in the form of a mobile car wash, fleet management washes, full details for the car lovers and so on. We have our main clients distributed across both residential and commercial customers.
How Does Social Champ Help You Deliver Value to Your Customers?
Where do we start? Social champ has been a huge boost in both productivity and more importantly efficiency. There is a difference between being busy and making progress. By using Social Champ, we were able to automate our messages across social platforms with ease, cutting our admin time literally in thirds. This means we are able to buy back some time for other business related tasks, that is an app well worth using.
Can You Explain Your Process of Planning and Executing a Campaign for a Client? What Tools Do You Use?
We use Social Champ to create pull campaigns to lure in more interested leads from our existing customers through upsells and cross sells, whilst also appealing to those who have yet to book but are interested as cold leads. As we all know, we should never put all our eggs in one basket, and by using SC, we are able to leverage multiple social platforms to cast a wide net and appeal to many people across different platforms.
We are glad to have you with us. Social Champ wishes the entire team of Schmicko good luck for their future endeavour.
Stop Juggling, Start Prioritizing
Try Social Champ to manage and organize everything in a single tab. From posting to scheduling, replying to customers, to tracking numbers – get all done through single tab.
Get Started FREE
View Pricing
<script>
document.addEventListener('DOMContentLoaded', function() {
function transformTablesForMobile() {
if (window.innerWidth > 767) return; // Only for mobile
const tables = document.querySelectorAll('#brxe-uuwxsd table');
tables.forEach(table => {
if (table.classList.contains('transformed')) return;
let headers = [];
const thead = table.querySelector('thead');
const tbody = table.querySelector('tbody');
// Get headers - check for both th and td in thead
if (thead) {
const headerRow = thead.querySelector('tr');
if (headerRow) {
// First try th, then td
let headerCells = headerRow.querySelectorAll('th');
if (headerCells.length === 0) {
headerCells = headerRow.querySelectorAll('td');
}
headers = Array.from(headerCells).map(cell => cell.textContent.trim());
}
} else if (tbody) {
// If no thead, take first row
const firstRow = tbody.querySelector('tr');
if (firstRow) {
let headerCells = firstRow.querySelectorAll('th');
if (headerCells.length === 0) {
headerCells = firstRow.querySelectorAll('td');
}
headers = Array.from(headerCells).map(cell => cell.textContent.trim());
}
}
// Return if no headers found
if (headers.length === 0) return;
// Get all data rows
const rows = Array.from(tbody.querySelectorAll('tr'));
const dataRows = rows; // All tbody rows are data rows when thead exists
// Create new structure
const newContainer = document.createElement('div');
newContainer.className = 'mobile-table-container';
// Create a section for each column
headers.forEach((header, colIndex) => {
const columnSection = document.createElement('div');
columnSection.className = 'mobile-column-section';
const columnHeader = document.createElement('div');
columnHeader.className = 'mobile-column-header';
columnHeader.innerHTML = header; // Use innerHTML to preserve formatting
columnSection.appendChild(columnHeader);
const columnList = document.createElement('div');
columnList.className = 'mobile-column-list';
dataRows.forEach(row => {
const cells = row.querySelectorAll('td');
if (cells[colIndex]) {
const item = document.createElement('div');
item.className = 'mobile-column-item';
item.innerHTML = cells[colIndex].innerHTML;
columnList.appendChild(item);
}
});
columnSection.appendChild(columnList);
newContainer.appendChild(columnSection);
});
table.style.display = 'none';
table.classList.add('transformed');
table.parentNode.insertBefore(newContainer, table.nextSibling);
});
}
transformTablesForMobile();
// Handle window resize
let resizeTimer;
window.addEventListener('resize', function() {
clearTimeout(resizeTimer);
resizeTimer = setTimeout(function() {
const containers = document.querySelectorAll('.mobile-table-container');
const tables = document.querySelectorAll('#brxe-uuwxsd table.transformed');
if (window.innerWidth > 767) {
containers.forEach(c => c.style.display = 'none');
tables.forEach(t => t.style.display = 'table');
} else {
containers.forEach(c => c.style.display = 'block');
tables.forEach(t => t.style.display = 'none');
}
}, 250);
});
});
</script>/* Sticky header for tables WITH thead */
#brxe-uuwxsd table thead {
background-color: #f0ebf8;
position: sticky;
top: 0;
z-index: 2;
}
#brxe-uuwxsd table thead th {
background-color: #f0ebf8;
position: sticky;
top: 0;
}
/* Sticky header for tables WITHOUT thead (first row only) */
#brxe-uuwxsd table:not(:has(thead)) tbody tr:first-child {
background-color: #f0ebf8;
position: sticky;
top: 0;
z-index: 2;
}
#brxe-uuwxsd table:not(:has(thead)) tbody tr:first-child td,
#brxe-uuwxsd table:not(:has(thead)) tbody tr:first-child th {
background-color: #f0ebf8;
position: sticky;
top: 0;
}
/* Mobile Column Layout */
@media (max-width: 767px) {
#brxe-uuwxsd table{
max-height:2000px;
}
.mobile-table-container {
display: block;
margin: 20px 0;
border-radius: 12px;
overflow: hidden;
}
.mobile-column-section {
border: 1px solid #E0E0E0;
overflow: hidden;
background: white;
}
.mobile-column-header {
background-color: #E3DFF5;
padding: 15px;
font-weight: bold;
font-size: 16px;
color: #333;
}
.mobile-column-list {
padding: 0;
}
.mobile-column-item {
padding: 15px;
border-bottom: 1px solid #F0F0F0;
background: white;
font-size: 16px;
line-height: 1.6;
}
.mobile-column-item:last-child {
border-bottom: none;
}
.mobile-column-item:nth-child(odd) {
background-color: #F7F6FC;
}
.mobile-column-item:nth-child(even) {
background-color: #FAFAFA;
}
.mobile-column-item strong {
color: #333;
font-weight: 600;
}
}