Community Moderation Plugin for Comments [closed]
Community Moderation Plugin for Comments [closed]
Community Moderation Plugin for Comments [closed]
Draft / schedule comments?
The e-commerce plugin Shopp for WordPress seems to allow 2-tier product variation options. It used to be a bit buggy in the 2-tier product variation department, but I think that they’ve fixed those issues with the plugin now. Keep in mind that Shopp isn’t free, but in my opinion it’s worth every dollar. MarketPress is … Read more
Take a look at Easy Review Builder for WordPress Review Ratings they both work as shortcode.
Write a simple shortcode to add a <div style=”clear: both;”> </div> Detailed Explanation: http://brettterpstra.com/adding-a-tinymce-button/
It sounds like you are asking for two features here: Image annotation Image comments You referenced a plugin for the first, and WordPress supports the second out of the box! As another choice, in the last link you provided, that person is using Flickr to handle their annotations and comments. This is another great option … Read more
Direct injection in to the DB. Have a look at the codex for $wpdb. I’d suggest putting a line of code in to a for() loop so that you can run it as many times as you want. <?php $wpdb->insert( $table, $data, $format ); ?>
WP is not really interested in what you add to the url string. But you could extract the url with native php functions and add your parts to the global wp_query; object using add_query_arg(). Then you can receive it via get_query_var() anywhere you need it. You could also use a hook to do the adding-job: … Read more
You can use this plugin http://wordpress.org/extend/plugins/s2member/
Off the top of my head, I don’t know of a plugin … but it’s easy enough to do this with a filter in your functions.php file (or in a custom plugin. This code, for example, turns off the rich text editor for everything with the post type “presentation”: add_filter( ‘user_can_richedit’, ‘disable_for_cpt’ ); function disable_for_cpt( … Read more