Voting Plugin

Discussion in 'Blogging' started by Woody10, Apr 19, 2008.

  1. #1
    Can you suggest some voting plugins? I am having a hard time finding decent ones in google? I am using post ratings already but wanted something different for other blogs.

    Thanks!
     
    Woody10, Apr 19, 2008 IP
  2. deluxdon

    deluxdon Catch Me If You Can...!!!™ Staff

    Messages:
    25,481
    Likes Received:
    1,943
    Best Answers:
    32
    Trophy Points:
    480
    #2
    Check this one.

    WP-Postratings

    Someone posted it few days back here at DP.

    DON.
     
    deluxdon, Apr 19, 2008 IP
  3. Woody10

    Woody10 Well-Known Member

    Messages:
    170
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    115
    #3
    Thanks, I have that one. I was looking for something with maybe a Vote Number kind of like Digg.
     
    Woody10, Apr 19, 2008 IP
  4. Woody10

    Woody10 Well-Known Member

    Messages:
    170
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    115
    #4
    Woody10, Apr 19, 2008 IP
  5. od3n

    od3n Active Member

    Messages:
    715
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    60
    #5
    something to do with your css. paste your index.php here.
     
    od3n, Apr 19, 2008 IP
  6. Woody10

    Woody10 Well-Known Member

    Messages:
    170
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    115
    #6
    Thanks, no matter where I try to throw the code in it comes out the same.
    <?php
    get_header();
    ?>
    
    <div id="content">
      <?php include (TEMPLATEPATH . '/adsense-top.php'); ?>
      <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
      <div class="entry">
    <?php DisplayVotes(get_the_ID(), "ticker"); ?>
     <h1 class="entrytitle" id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink() ?>" rel="bookmark">
          <?php the_title(); ?>
    
          </a> </h1>
        <div class="entrymeta">
    
    	<?php the_time('F j, Y ');?> | By <?php the_author() ?> In <?php the_category(',') ?> | <?php comments_popup_link($comments_img_link .' Comments(0)', $comments_img_link .' Comments(1)', $comments_img_link . '  Comments(%)');?>
        </div>
        <div class="entrybody">
          <?php the_content(__('Read more &raquo;'));?>
        </div>
        <p class="postmetadata"></p>
        <!--
    	<?php trackback_rdf(); ?>
    	-->
      </div>
      <?php comments_template(); // Get wp-comments.php template ?>
      <?php endwhile; else: ?>
      <p>
        <?php _e('Sorry, no posts matched your criteria.'); ?>
      </p>
      <?php endif; ?>
      <p>
        <?php posts_nav_link(' &#8212; ', __('&laquo; Previous Page'), __('Next Page &raquo;')); ?>
      </p>
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
    
    PHP:
     
    Woody10, Apr 19, 2008 IP