Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #194801

    Hi,

    hope you can help. How can i implement wp post ratings within the page header (is on all pages activated in my theme). I want the stars right after the Page Title and before the breadcrumbs.

    Thank you for your help

    #195060

    Hey Voxmoney!

    This is not possible because the rating code should be included within the <?php while (have_posts()) : the_post(); ?> code. You can only move the rating position using this on Quick CSS:

    .post-ratings {
    position: absolute;
    top: -30px;
    right: 0;
    }

    This will move it at the top of the featured images if you have one.

    Cheers!
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Wp Post Ratings Implementation in Page Frontend Header’ is closed to new replies.