For plain output of just text that drops into line with other text on the page, do this:
Open “mailchimp-subscriber-Chiclet.php”
Find:
if($lists) {
foreach ($lists[data] as $value) {
if($value[id] == $listId) {
$returnString .= '<div class="mailchimp-subscriber-chiclet-for-wordpress mailchimp-subscriber-chiclet-for-wordpress-wrapper" title="' . $value[name] . '">';
if($link == 'true') {
$returnString .= '<a href="' . $value[subscribe_url_short] . '" class="mainLink" target="_blank" title="Subscribe to ' . $value[name] . '">';
}
$returnString .= '<div class="mainButton" style="background-image: url(\''.plugin_dir_url( __FILE__ ).'/images/mailchimp_'.$color.'.png\');">';
$num = (int)$value[stats][member_count];
$returnString .= number_format($num) . ' ' . $postFixText;
$returnString .= '</div>';
if($link != '') {
$returnString .= '</a>';
}
$returnString .= '</div>';
}
}
}
Replace with:
if($lists) {
foreach ($lists[data] as $value) {
if($value[id] == $listId) {
$returnString .= '<div class="" style="display: inline-block;" title="' . $value[name] . '">';
if($link == 'true') {
$returnString .= '<a href="' . $value[subscribe_url_short] . '" class="mainLink" target="_blank" title="Subscribe to ' . $value[name] . '">';
}
$returnString .= '<div class="">';
$num = (int)$value[stats][member_count];
$returnString .= number_format($num) . ' ' . $postFixText;
$returnString .= '</div>';
if($link != '') {
$returnString .= '</a>';
}
$returnString .= '</div>';
}
}
}