VIYA Health is a women’s healthcare organization that adapts to every stage and transition of their lifelong wellness journey.
“Women’s healthcare has typically been shaped by short-term programs. There is a need for system evolution – to put women at their core, offering care that listens, adapts, and respects the full arc of their lives. We provide women clarity, confidence, and the freedom to live life on their terms.”
To carry out this much-needed mission, the organization requires a reliable social media management tool that can help it broadcast its message on multiple social platforms.
While the company used tools like Sprout Social prior, they needed a platform that could provide value for money, hence turning to Social Champ.
Let’s take a look at how Social Champ helped VIYA Health improve SM administration by 25%.
Ready to Scale Your Brand?
See how VIYA Health made social media management simple with Social Champ and start your own journey today!
Quick Questions With Jorge Rivas
Name: Jorge Rivas
Designation: Regional Corporate Services Director
Company Name: VIYA Health North America
One Major Challenge: Managing multiple platforms
Best Feature: Easy navigation
The Challenge: Multi-Channel Management Without Excessive Costs
VIYA Health faced the complex task of managing a diverse presence across multiple social platforms while coordinating with different team members.
Since their previous tool, Sprout Social, charged an agency-level price for a single user, it became difficult to add team members while also minimizing costs.
They needed a solution that offered multi-user collaboration and high-volume channel management without the prohibitive price tag often associated with enterprise-level tools.
The Solution: Affordable Agency-Grade Management
Social Champ provided VIYA Health with an affordable, agency-grade social media management solution. Since the platform’s higher-tiered plans offer unlimited users, the organization was able to add as many team members as they needed.
Another thing that made Social Champ a great solution was its bulk upload and data optimization features, which allowed the firm to schedule numerous posts at once. As a result, they were able to focus more on improving their SM strategy without being bogged down by tedious and repetitive tasks.
The Difference: Value for Money
What made Social Champ stand out was its value for money. Despite offering agency-grade features, the tool is designed to be made affordable for both startups and agencies with its flat-rate bundles and pay-per-profile pricing.
VIYA Health also gave a shoutout to Social Champ’s customer support, which they revealed to be extremely responsive and helpful.
The Result: Social Media Administration Improved by 20%
With Social Champ, the organization saw a 20% improvement in staff administration with regards to social media management.
“The result was staff efficiency improvement in social media administration by 20%.”
Now, the company hopes to further improve user experience by providing the right content at the right time.
Start Your Success Story!
Take a page from VIYA Health’s success and provide your collaborators with Social Champ’s multi-user features.
<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;
}
}