jessicao
Forum Replies Created
-
Hi @richardgabriel,
I’ve tried the workaround solution that you’ve suggested above, and it ends up just redirecting me to each of the protected pages from my goals. Is there a way to just mark a goal complete without having the corresponding redirection take place? Thank you!
Jessica
Thank you for your help!
Ah, I didn’t realize this was an option – thank you!
Is there also an easy way to output the Category name before the list of downloads?
Thanks,
JessicaForum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Destroy after all posts loadedPerfect, thank you! And thanks for the speedy reply! ??
Seems to be working – thank you!!
Thank you for your help! I’m still new a little new to php and WordPress development…could you help me understand what this solution would look like for my code? Here’s my current code:
<?php $loop = new WP_Query( array( 'post_type' => 'design-notes', 'posts_per_page' => 9, 'orderby' => 'rand' ) ); ?> <?php while ( $loop->have_posts() ) : $loop->the_post(); ?> <div class="col-sm-4 note" style="background:url('<?php the_field('color_thumbnail_image'); ?>') no-repeat -9999px -9999px;"> <a href="<?php the_permalink(); ?>"> <div class="note-title" onMouseOver="changeBgImage('<?php the_field('color_thumbnail_image'); ?>', '<?php the_field('design_note_number'); ?>')" onMouseOut="changeBgImage('<?php the_field('grayscale_thumbnail_image'); ?>', '<?php the_field('design_note_number'); ?>')"> <p class="title"><?php the_title(); ?></p> </div> <!-- /.note-title --> <div class="note-image" id="<?php the_field('design_note_number'); ?>" style="background:url('<?php the_field('grayscale_thumbnail_image'); ?>');" onMouseOver="changeBgImage('<?php the_field('color_thumbnail_image'); ?>', '<?php the_field('design_note_number'); ?>')" onMouseOut="changeBgImage('<?php the_field('grayscale_thumbnail_image'); ?>', '<?php the_field('design_note_number'); ?>')"> </div> <!-- /.note-image --> </a> </div> <!-- /.col-sm-4 --> <?php endwhile; wp_reset_query(); ?> <?php echo do_shortcode('[ajax_load_more post_type="design-notes" orderby="rand" transition="fade" posts_per_page="3" scroll="false" pause="true" button_label="Load More Design Notes"]'); ?>
Thank you so much – I really appreciate your time and help!