shavonn4prez
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
I wanted to use a font-awesome icon but it won’t let you save html so I went in code and changed it manually 🙁
I just deleted the cookies it created in my browser settings.
Looked in the code and saw $alm_loop_count so I used that 🙂
<?php if($alm_loop_count == (($alm_loop_count-1) % 3 == 0)) {echo '<div class="row activity-row">';} //looooooooooop if($alm_loop_count % 3 == 0 ) {echo '</div>'; } ?>Hey- I looked at the code and it seemed to be conditioned on set cookies. I removed the cookies and I was able to like again.
I was alternating between 2 accts as well.
Same issue with the lack of permission
Forum: Plugins
In reply to: [WP-PostRatings] Can't vote on more than one post in the same pageI’m able to do this if I use WP_Query to get the posts if it’s any help to you! 🙂
<?php $args=array('orderby'=>'date', 'posts_per_page'=>'5'); $recent_posts = new WP_Query($args); while ($recent_posts->have_posts()) : $recent_posts->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a><?php if(function_exists('the_ratings')) { the_ratings(); } ?></li> <?php endwhile; ?>
Viewing 6 replies - 1 through 6 (of 6 total)