Tanin
Forum Replies Created
-
This plugin already has the option to remove it. The setting is called “Tweet link text” ??
The plugin shows the images as they’re uploaded. Checked the image URL?
Seems like the JetPack plugin is overriding the Tweet Button preferences. You could try opening the jetpack/modules/shortlinks.php and commenting out or removing the add_filter line at the top of the file.
Forum: Plugins
In reply to: [WP Render Blogroll Links] [Plugin: WP Render Blogroll Links] Great PluginThanks. The WP Render Blogroll Links runs on more than 20.000 websites. We’re really happy with it.
Forum: Plugins
In reply to: [WP Tweet Button] [Plugin: WP Tweet Button] 2.0.3.3 Bug?Can you see if the issue is resolve in the latest version (you may need to clear your short url cache). Also, can you direct me to your site?
Forum: Plugins
In reply to: [WP Tweet Button] [Plugin: WP Tweet Button] HTTPS lookups on Bit.lyI can’t access your site. Are you using a manual placement?
Forum: Plugins
In reply to: [WP Tweet Button] [Plugin: WP Tweet Button] 2.0.3.3 Bug?Try using “Display the same tweet count across all shorteners” and if that doesn’t work, clear the shortener cache by checking the box labeled “Delete all previously saved shortlinks when I save” and save.
Forum: Plugins
In reply to: [WP Tweet Button] [Plugin: WP Tweet Button] Extra "Tweet" Text on excerptsI suspect your template has removed the default hook to the_excerpt and uses a customized function to show excerpts. You can use the new version but you’ll have to clear the “Tweet link text” in the settings. That will remove the “Tweet” text from view.
Forum: Plugins
In reply to: [WP Tweet Button] WP Tweet Button bug that conflicts with All in One SEOThis concept has been applied in 2.0.3
Forum: Plugins
In reply to: [WP Tweet Button] [Plugin: WP Tweet Button] HTTPS lookups on Bit.lyVersion 2.0.3 has an option to exclude https urls from shrinkers.
Forum: Plugins
In reply to: [WP Tweet Button] [Plugin: WP Tweet Button] HTTPS lookups on Bit.lyInteresting. i don’t exactly know what could be going on. Until the next release you can:
find:
if ($perms == false) return false;
add this line after it:
if (strstr($perms,'https://')) return $perms;
This will prevent shortening of https:// URLs.
Forum: Plugins
In reply to: [WP Tweet Button] [Plugin: WP Tweet Button] Multiple with Different StylesYup.
Examples:// Horizontal placement:
echo tweetbutton(null,null,'horizontal');
// Vertical placement (box):
echo tweetbutton(null,null,'vertical');
// Placement without a counter:
echo tweetbutton(null,null,'none');
Forum: Plugins
In reply to: [WP Tweet Button] WP Tweet Button bug that conflicts with All in One SEOThe jumping through hoops in filters was done because some templates do crazy things with the excerpt filter. I’ll be testing your mutations against these templates and implement them in the next version.
The tweetbutton function doesn’t output the button, it just returns it. To output the button use
echo tweetbutton();
Forum: Plugins
In reply to: [WP Tweet Button] [Plugin: WP Tweet Button] OAuth Doesn't WorkThat might have been due to a server issues at my end. Try again and let me know if it’s been resolved.