Sorting/Ordering Poll Plugin?

I agree with toscho. Regardless that this is off topic by asking for plugin recommendations, I think you just need to adjust how you are making the poll, rather than what plugin you are using or how you code it. I would split the poll up into mini polls for each answer position. Example. Sorry … Read more

How to give “author” user role appropriate capabilities to add PollDaddy polls? WordPress multisite

Open the file “polldaddy.php” and look near the first few dozen lines for this: $this->is_admin = (bool) current_user_can( ‘manage_options’ ); Change that to $this->is_admin = (bool) current_user_can( ‘edit_posts’ ); That would in theory grant authors and above the same access as an admin – you have to test yourself to be sure. See the admin_menu() … Read more

google +1 like polling system

Take a look at this tutorial http://bavotasan.com/2009/simple-voting-for-wordpress-with-php-and-jquery/ and its follow up http://bavotasan.com/2011/a-better-voting-system-for-wordpress/ which shows a simple implementation of a vote like system.

REST alert when new WordPress post is published or updated

Use the HTTP API to send a “ping” on the wp_insert_post action, which is fired whenever a post is created/updated: /** * @param int $post_id The ID of the post. * @param WP_Post $post The post object. * @param bool $update True if the post already exists and is being updated */ function wpse_185340_post_ping( $post_id, … Read more

Polls with respective comments?

I can’t see a way to do it with any existing plugins. Probably the best thing to do would be to modify the plugin so that in the short code you could put “post=186” where 186 corresponds to the number of the page that you’re posting it on. And then modify the output of the … Read more

Getting id of poll from WP database

The first problem I spotted is that you aren’t setting $latest_pollid but you are nonetheless trying to use that as the poll id. You should have something like: $latest_pollid = polls_latest_id(); before that line in order to set the value. There are big problems with what you are doing though. Hooking to after_setup_theme means that … Read more

Advice for a voting / multiple rating plugin for post types other than GD Star Rating [closed]

i wrote this plugin a while back for a client and never got around to polishing it off for general release. https://github.com/dwenaus/bp-rate-vote-like-anything Myself and another developer plan to launch it soon. But even as it is now, it’s totally solid and very cleanly coded. I wrote it because GD Star Rating plugin was so bloated. … Read more

Why would admin-ajax.php redirect to the home page for logged out users?

It only redirects when accessed directly, as do all files located in wp-admin/. AJAX requests should work fine regardless of authentication status. Edit: wp-admin/admin-ajax.php should not redirect in any situation. Perhaps a plugin is redirecting all unauthenticated users to the homepage? By default, accessing files inside wp-admin/ when not logged in should redirect to the … Read more