locha91
Forum Replies Created
-
Awesome!
Thanks!
That worked perfect!Question:
If I have another page on my site that sorts posts by rating..
How should the repeater be?
This is the actual code:$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
$args[‘paged’] = $paged;
query_posts($args);
if ( have_posts() ) :
$count = 1;
while ( have_posts() ) : the_post();
global $post;
if($count == 3 && $redux_demo[‘ad3’] != ”) {
echo ‘<div class=”header_ad ad_between”>’ . $redux_demo[‘ad3’] . ‘</div>’;
}
get_template_part( ‘content’, get_post_format() );
$count++;
endwhile;
get_template_part(‘includes/pagination’);
endif; wp_reset_query();
remove_filter(‘posts_orderby’, ‘teo_ordervotes’);
?>Thanks man!
Awesome supportThanks dcooney for your help!
I made some progress here!I was able to have the plugin load posts with the appropiate styles but I can’t have the plugin to load the following posts (other than those already loaded by default).
It seems like the plugin is looping the same posts all over again.
Sounds like sth wrong on my repeater template?This is the code for my repeater template:
<?php
$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts(‘orderby=date&order=DESC&paged=’ . $paged);
if ( have_posts() ) :
$count = 1;
while ( have_posts() ) : the_post();
if($count == 3 && $redux_demo[‘ad3’] != ”) {
echo ‘<div class=”header_ad ad_between”>’ . $redux_demo[‘ad3’] . ‘</div>’;
}
get_template_part( ‘content’, get_post_format() );
$count++;
endwhile;endif;
?>Moreover, I noticed links and images on posts loaded by the plugin are broken.
my site is https://www.encriollo.comThank you so much for your help!
Hi!
At least to me, IT doesnt show any styles!
Posts should be loaded with the same styles as tthose above.
Scroll down to the bottom please.Thanks
George,
First things first, your plugin is awesome.
It really helps a lot.Regarding this feedback message, I couldn’t find it on the code. Could you help me please locate it? I would like to custom this message.
Thanks a lot