Hi
Not sure if its a typo or not ... but with the follower count should it not say "number" followerS opposed to follower ?
How can i change this ?
Thanks
Nik
Hi
Not sure if its a typo or not ... but with the follower count should it not say "number" followerS opposed to follower ?
How can i change this ?
Thanks
Nik
Thanks for the hint. I'll report it to Kriesi. You can fix it by replacing following code in flashlight\framework\php\class-framework-widgets.php:
echo "<a href='$link' class='asc_twitter $addClass'><strong class='asc_count'>".$follower['twitter']."</strong><span>".__('Follower','avia_framework')."</span></a>";
with:
if ( $follower['twitter'] <= '1' ){
echo "<a href='$link' class='asc_twitter $addClass'><strong class='asc_count'>".$follower['twitter']."</strong><span>".__('Follower','avia_framework')."</span></a>";
}else{
echo "<a href='$link' class='asc_twitter $addClass'><strong class='asc_count'>".$follower['twitter']."</strong><span>".__('Followers','avia_framework')."</span></a>";
}Worked a treat, thanks :)
Glad that I could help you :)
Is this going to be implemented in the base framework sometime soon? Its been over a year.
Hey geekchoice35a,
Looks like it just slipped by. I'll tag it for Kriesi (we aren't able to update the theme files).
Regards,
Devin
Hi!
will add it ;)
Regards,
Kriesi
This topic has been closed to new replies.