sublines
Forum Replies Created
-
Thanks, this helped!
Forum: Plugins
In reply to: [Social Share Buttons by Supsystic] Show "like" count on HomepageI have this option enabled and the numbers show up fine, that’s not what I meant.
I would like to show them not just under the post itself, but also on the homepage, where the posts are listed in an overview. Maybe I fail to explain this well. When you visit our website, you will see that the counters appear fine on the single post pages but do not show up on the homepage where the excerpts are shown.I am concerned about this as well. What does facebook say about this?
Forum: Plugins
In reply to: [Social Share Buttons by Supsystic] Use short url for twitterthanks for resolving this in this update. great work!
Forum: Plugins
In reply to: [Social Share Buttons by Supsystic] Use short url for twitterThanks, that would be awesome! π
Forum: Plugins
In reply to: [Author Avatars List/Block] Sort by last nameresolved
Forum: Plugins
In reply to: [Author Avatars List/Block] Sort by last nameThanks, for the quick answer! Works great! I didnt find this option anywhere on the shortcodes page.
You’re right. I deleted the ABP extension and reinstalled it and notices that right after installation it asks whether or not social buttons should be blocked. I must’ve switched this on last time. Thank you for your quick response.
Forum: Plugins
In reply to: [Author Avatars List/Block] Sort by last nameMaybe with the help of this plugin? I can’t figure out how though..
I can confirm it gets blocked by Adblock Plus 1.10 on Chrome or any Browser.
I have found two reasons for this:
1. Adblock blocks all classes that start with mashsb– and mashicon-.
2. Adblock blocks all a tags that include facebook.com/sharer.php in its href.
(It blocks ::content a[href^=”http://www.facebook.com/sharer.php?”%5D)Suggestions for the plugin authors:
1. Include a backend function to choose a custom class. (Because Adblock will eventually block your default classes even when you change them with your plugin updates)
2. Create a generic shorturl that replaces the facebook.com/sharer.php link
Forum: Plugins
In reply to: [Category Color] I want CSS!hey, i found a super easy, yet hacky way around it!
simply change this line (from the FAQ page)
$output .= '<a href="'.get_category_link( $category->term_id ).'" style="color:'.$rl_category_color.';">'.$category->cat_name.'</a>'.$separator;into this
$output .= '<a href="'.get_category_link( $category->term_id ).'" class="'.$rl_category_color.'">'.$category->cat_name.'</a>'.$separator;this way the category is assigned a class that has the name of whatever color you picked. Then you can target it via css.
but thats not all, because classes can’t include hastags or start with a number, but the colors do.
simple trick: when you pick a color for a category, make sure its a color that starts with a letter (not a number) and then remove the hashtag #.i chose colors for my categories like aaaaaa and bbbbbb and then target them as classes with my css file.