mptre
Forum Replies Created
-
Forum: Plugins
In reply to: [Emo Vote] [Plugin: Emo Vote] Broken in 3.0.1Make sured you copied to following snippet to your theme? See step 6 for further reference.
<?php if (function_exists('emo_vote_display')) emo_vote_display('No votes', '1 vote', '% votes'); ?>
Forum: Fixing WordPress
In reply to: Emo Vote on Posts OnlyMake sure to only include the emo vote code in single.php that belongs to your current theme.
Sorry forgot to reply to this one but it’s been added as a feature request.
Sorry forgot to reply to this one but it’s on my to-do-list ??
Good idea! Will probably be implemented.
Forum: Plugins
In reply to: [Plugin: Emo Vote] Allow more than 5 optionsThere’s a limitation in the emo_vote table (MySQL) at the moment. Will see if it’s possible to change this.
Forum: Plugins
In reply to: [Plugin: Emo Vote] Allow widget output to be done via a php call as wellTill next version I’m thinking of creating a generic function used for retrieving emote:s for a given post.
The function used for the widget will probably be rewritten according to new widget API (introduced in WP 2.8). In other words no go there.
There might be a stand-alone function for this if a dashboard widget is added.
Forum: Requests and Feedback
In reply to: [Plugin: Emo Vote] Feature Requests@carlbraun ofcourse it’s possible to simply replace the images with new ones. But I get what you mean, a better method for replacing the images. Maybe a future version will come loaded with a series of icons to choose from.
Forum: Requests and Feedback
In reply to: [Plugin: Emo Vote] Feature RequestsHi I’m the developer behind Emo Vote.
Guest users not allowed to Vote (show window saying Plz Login)
Quite easy to fix. But it doesn’t have that high priority.
Option to show different “text” before & after Voting.
Do mean the labels for each button or the optional text above the options?
Allow only to Vote once.
That’s abit tricky. Either you allow every ip-address to vote once. If severeal users have the ip-address only one of them will have the ability to vote. That’s why I choosed to prevent users from voting twice using cookies. Ofcourse you can simple delete the cookie and vote again and again.
Widgets to Show Most/Recent Voted posts
Will come with the next version.
Thanks for the feedback, keep em’ coming!
Forum: Plugins
In reply to: [Plugin: Emo Vote] How I can prevent empty data in my DB?Glad you’ll like it!
Forum: Plugins
In reply to: [Plugin: Emo Vote] Cicular Graphics Disappear in Emo-VoteHi, I’m the developer of Emo Vote. It’s probably caused by JavaScript-conflict. Do you have a url to the blog you’re referering to?
Forum: Plugins
In reply to: Possible to modify the RSS entries with Plugin API?Nevermind, add_filter() did job the just fine!
Forum: Plugins
In reply to: [Plugin: Emo Vote] How I can prevent empty data in my DB?@metacortex the latest version of Emo Vote (on GitHub) doesn’t insert empty rows. Instead it adds a row first when someone actually “emotes”. Take it for a spin or wait until the release is being published here on WordPress (later this week).
Forum: Plugins
In reply to: [Plugin: Emo Vote] How I can prevent empty data in my DB?Emo Vote uses jQuery Checkbox plugin to make it possible to style all checkboxes using basic CSS. I choosed to create one image for each checkbox, to make it easier to modify their appearence instead of keeping all images in one (i.e sprite-technic).
I’ve got the psd for the buttons if you’re interested. Otherwise take a look at the jQuery Checkbox docs. But the CSS for Emo Vote is quite straight-forward.
Forum: Plugins
In reply to: [Plugin: Emo Vote] How I can prevent empty data in my DB?Hi there!
I’m the developer behind Emo Vote. The first you visit your site after Emo Vote has been installed it creates a row for each post. So that’s why you end up with alot of empty rows (i.e no votes). Might change this in the upcoming version.First when a user “emotes” it checks if a row for that specific post exists, if not it create one. That’s a better solution. Thanks!