Join Our Discord Community

An Exclusive Interview with the Group Admin of Social Media Today

Explore the world of online communities. Read our conversation with Mr. Mainur Rahman, admin of 'Social Media Today' on LinkedIn.

Published on: Sep 15, 2023
Written by: Kulsoom Awan
Share:
Social Media Today Group Admin Interview

The culture of communities has emerged in this digital era, and they have been performing well. Be it on Facebook, LinkedIn, Discord, and even Reddit, people are using it properly. They use it to exchange information, extract news, or even networking. With perks, there are also downfalls, such as spreading rumours, cyberbullying, privacy concerns, etc.

Among the list of successful online communities, we are glad to have a talk with Mr. Mainur Rahman, one of the group admins of ‘Social Media Today, ’ a community of social media professionals and marketers on LinkedIn.

Social Champ asked about his entire journey and inspiration, and here is all that he has to say this.

Hi Mainur, Thanks for being a part of our #ChampsSeries. To start off, please introduce yourself. 

Hello, This is Maniur. I’m a marketing professional with about 5 years of experience. Currently, I’m working at Industry Dive, managing online communities across 20 different industries. Before this, I worked at other companies in fintech and apparel.

What inspired you to create the community ‘Social Media Today’ on LinkedIn?

I did not create the community myself. Social Media Today is one of Industry Dive’s publications covering different social media areas. While the Social Media Today (SMT) newsletter publishes all the social media news daily, the LinkedIn community is a space for subscribers to discuss them.

Managing a group can be challenging. Could you elaborate on your strategies for maintaining engagement and meaningful discussions within the group?

Yeah, it is very challenging. But I prioritise 2 things. Firstly, I make sure to post relevant social media updates regularly, and secondly, I keep it free from all sorts of promotional content and spam. This has worked very well so far.

Featured Article: SMM Discussion with Markuss Hussle

What key milestones or achievements have you witnessed in the group’s journey so far? Are there any specific success stories you’d like to highlight?

The success story that I would like to highlight was being recognized by LinkedIn as one of the most active groups on the entire platform.

Staying updated with the latest industry trends is crucial. How do you personally keep yourself informed about Social Media?

Our Social Media Today community is actually a part of SMT publication. As a publication, SMT publishes all the latest social media industry news. That is always my go-to place to find the latest trends.

What criteria do you follow as the admin when evaluating and accepting new members into the Social Media Today group? How do you maintain the group’s quality and relevance?

Specifically for the Social Media Today group, we accept anyone who seems to be a real human being. There is a strict moderation process for all the posts and comments. We just ensure that anything unrelated to social media or marketing is deleted.

The role of community building can be challenging. What’s the secret sauce behind this?

It’s challenging and fun at the same time. I have got to meet a lot of people. A great networking opportunity, to be honest. The secret sauce is…just don’t think of this as a job. Imagine yourself as a member of the community. You will start loving it.

What plans or aspirations do you have for Social Media Today’s growth? 

To become the biggest and most active community on this topic!

We thank Mr. Mainur for his precious time and for sharing his stories and experiences with our champ audience.

I am a part of the #ChampFam designated as a Community Manager with a history of working in SME's. I am skilled in content writing, social media management & building relations. I love to travel, read and always in search to seek adventure.

Leave the first comment

<script>
document.addEventListener('DOMContentLoaded', function() {
    function transformTablesForMobile() {
        if (window.innerWidth > 767) return; // Only for mobile
        
        const tables = document.querySelectorAll('#brxe-kpxjkv 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-kpxjkv 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-kpxjkv table thead {
    background-color: #f0ebf8;
    position: sticky;
    top: 0;
    z-index: 2;
}

#brxe-kpxjkv table thead th {
    background-color: #f0ebf8;
    position: sticky;
    top: 0;
}

/* Sticky header for tables WITHOUT thead (first row only) */
#brxe-kpxjkv table:not(:has(thead)) tbody tr:first-child {
    background-color: #f0ebf8;
    position: sticky;
    top: 0;
    z-index: 2;
}

#brxe-kpxjkv table:not(:has(thead)) tbody tr:first-child td,
#brxe-kpxjkv table:not(:has(thead)) tbody tr:first-child th {
    background-color: #f0ebf8;
    position: sticky;
    top: 0;
}


/* Mobile Column Layout */
@media (max-width: 767px) {
  #brxe-kpxjkv 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;
    }
}

A Simplified Social Media Management Tool

Social Champ is your AI-powered social media management tool.

Schedule, analyze, listen, and track competitors – all in one platform.

Try now, Start free
No credit card required!
Related Blogs
Mailtrap Review 2026: Is This Email API Worth It?
May 18, 2026
If you run a business on social media, you already know email is the quiet sibling doing half the work.…
CloudTalk – A Cloud Phone System for the Modern Marketer
Jul 24, 2025
Strong customer support is essential for every brand & business whether it's on social media or physical store. Sales, support,…
Interview: Annie-Mai Hodge, Founder of Girl Power Marketing
Jul 14, 2025
At Social Champ, we’re always thrilled to spotlight creators who are transforming the digital space, not just with content, but…
Wait, before you go...👋

Don't let your Social Growth stop here.

Get 14 days of Social Champ Pro - Completely free!
Schedule unlimited posts, analyze performance, and manage all your social media from one place.

Unlimited
Scheduling

In-Depth
Analytics

Manage Multiple
Accounts

Start My 14-Day Free Trial

No credit card required

Cancel anytime

Easy setup

Loved by 10,000+ marketers and businesses

Secure & Reliable

#1 Rated Social Media Management Tool