Forums

[Plugin: Post Star Rating] Rating works in Firefox but not I.E (6 posts)

  1. wepixel
    Member
    Posted 4 months ago #

    I am using WP 2.7.1 and has install & activate the post star rating plugin. It is able to display in both Firefox and IE7, but in IE7, i can't seem to be able to vote (but in firefox, i am able to place my vote). Does anyone know the problem?
    http://moviescritics.com/movie-review/featured/termination-salvation/

    Btw, if i would like to retrieve & display the rating result of a particular post, is there any available function in this post star rating to do that? e.g. <?php PSR_GET_voting_stars(post_id); ?>

    Lastly, is it possible for me to put or capture this rating under a customize field, e.g. "rating", so that I can use the <?php the_meta(); ?> to display all the custom field of my particular post, including the rating as well.

    Thanks,
    Joe

  2. Marlimant
    Member
    Posted 4 months ago #

    I have the same problem.

  3. sammyb
    Member
    Posted 3 months ago #

    Same problem - it's not working in IE for me either. It looks like a js problem to do with this function: PSR_getHTTPObject()

  4. sammyb
    Member
    Posted 3 months ago #

    It was a CSS problem. Heres the solution:

    In psr.class.php change this:

    .PSR_stars input {
    display: none;
    }

    to this:

    .PSR_stars input {
    /* for IE */
    filter:alpha(opacity=0);
    /* CSS3 standard */
    opacity:0;
    width: 0; height: 0;
    }

  5. jefblog
    Member
    Posted 2 months ago #

    same problem but you solution don't work in my site ?
    I try to understand but I'm not a css IE expert ;)

  6. jefblog
    Member
    Posted 2 months ago #

    exactly , your solution work now in IE but not well in Firefox : I don't see the star in Firefox. (an the interline is not good

Reply

You must log in to post.

About this Topic