For Creators starting their YouTube journey and wanting access to new tools for growth.
$1 for first 30 days, then $7.50 per month after that.
access to search optimization features to get your videos ranking higher and drive more views.
limited access to video engagement tools that allow you to manage your community and turn viewers into subscribers.
better understand your audience and gain insights to create videos that take your channel to the next level
No contracts, cancel any time.
*Pro and Legend are Creator License Packages available to Individual Creators only. Pro and Legend Creator License Packages are not available to Businesses, and is subject to TubeBuddy’s discretion, determined as having one or more of the following criteria: Multiple YouTube channels on TubeBuddy; 50k or more YouTube Subscribers; 3 or more Channel Managers; 50 or more employees.
limited
* Limited results in Tag Explorer * Limited results in Suggested Tags * Limited Best Practice Checks * Create limited Video Topics * Create limited Canned Responses * Create limited Tag Lists * Cannot HIDE Comments
Productivity Tools
Quick-Edit Toolbar
Quick Links Menu
Emoji Picker
Coopa Center
Coopa Center
Coopa Center
Coopa Center
Coopa Center
Video SEO & Promotion Tools
SEO Studio
Keyword Explorer
Tag List
Suggested Tags
Suggested Tags
Suggested Tags
Suggested Tags
Suggested Tags
Data & Research Tools
Search Insights
Language Analysis
Demonetization Audit
Comment Word Cloud
Comment Word Cloud
Comment Word Cloud
Comment Word Cloud
Comment Word Cloud
.pricing-container {
max-width: 1200px;
margin: 50px auto;
display: flex;
justify-content: space-between;
position: relative;
}
.card {
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
margin: 0 10px;
width: 30%;
}
.card h2 {
color: #333;
margin-top: 0;
}
.features {
list-style: none;
padding: 0;
margin: 0;
}
.features li {
margin-bottom: 10px;
line-height: 1.5;
color: #666;
}
.features .hidden {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
opacity: 0;
}
#toggleFeatures {
position: absolute; /* or absolute if you want it to move with page scroll */
bottom: 15%;
left: 0;
width: 100%;
padding: 20px 0;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
color: #007BFF;
border: 0;
border-radius: 0; /* Full width buttons typically don't have border radius */
cursor: pointer;
transition: all 0.5s ease-in-out;
z-index: 10; /* Ensure it's above other elements */
}
@media (max-width: 768px) {
.pricing-container {
flex-direction: column;
align-items: center;
}
.card {
width: 80%;
margin-bottom: 20px;
}
}
.features .revealed {
max-height: 100%; /* Set a max-height that your content will not exceed */
opacity: 1;
}
.btnRevealed{
bottom: -15%!important;
}
window.onload = function() {
let toggleBtn = document.getElementById('toggleFeatures');
const handleHideFeatures = () => {
var hiddenFeatures = document.querySelectorAll('.more-features');
console.log('hiddenFeatures ',hiddenFeatures)
var button = toggleBtn;
var isRevealed = button.textContent.includes('Less');
// Toggle the revealed class on each feature
hiddenFeatures.forEach(function(feature) {
if (isRevealed) {
console.log('hide')
feature.classList.remove('revealed');
feature.classList.add('hidden');
toggleBtn.classList.remove('btnRevealed');
} else {
console.log('show')
feature.classList.add('revealed');
feature.classList.remove('hidden');
toggleBtn.classList.add('btnRevealed');
}
});
// Update the button text
button.textContent = isRevealed ? 'See All Features' : 'See Less Features';
// Optionally adjust the button position, if needed
}
toggleBtn.addEventListener('click', handleHideFeatures);
}