Avalo Design
Forum Replies Created
-
Ha! That was it.
I deleted the row, thumbnail, and blog-content comments.
I’m going to call that an easy fix. Thanks for the great customer support, you are the man.
Thanks for the kind words, and the heads up on the crash.
My template:
<article class="col-sm-4 blog-content" itemscope itemtype="https://schema.org/BlogPosting" itemprop="blogPost"> <div class="thumbnail"> <?php if ( has_post_thumbnail() ) : ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?> itemprop="url""> <?php the_post_thumbnail(); ?> </a> <?php endif; ?> <header class="row"> <h3 itemprop="headline"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> </header><!--/row --> </div><!-- /thumbnail --> </article><!-- /blog-content -->
Our site is finally live, here’s a quick screencast of the issue: https://screencast.com/t/8qriISdTx
You can see the issue here by exploring the post categories:
Best,
BrianForum: Plugins
In reply to: [All-in-One WP Migration and Backup] Giant .wpress archive fileI was able to delete the backups on my production server, but to get a smaller file out of localhost, I had to manually find and empty wp-content/ai1wm-backups of the backup files – they weren’t showing in the WP GUI.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Giant .wpress archive fileThis is happening to me as well. A 1GB export from a site with a much smaller footprint. Where is all of this extra file size coming from?
*Actually, I think the reason for me is that the plugin is creating and moving backups. So this isn’t a failure of the plugin – I just need to delete backups, right?
Right, but that’s what’s weird. I can set the “Settings > Reading” to numbers like 2 or 5 and then load in 3 or 6 posts at a time, and I’ll still get the issue when the second set loads.
I may be having a similar issue. Try changing the load number to 4 or more at a time. See this thread.
Alright, my test seems to reveal this: The plugin works if there are 4 or more posts. posts_per_page=”3″ and less doesn’t append the “done” class (without the extra click).
For example:
<?php echo do_shortcode('[ajax_load_more post_type="post" posts_per_page="3" pause="false" scroll="false" transition="fade" offset="1" button_label="More Posts"]'); ?>
Is anyone else having this issue? It could be something about my header or footer perhaps.
I’ve tried using and not using <?php wp_reset_query(); ?> right after <?php endwhile; ?> to no avail. Next I’ll try the shortcode on an empty page.
I did find this post.
Looks like someone else had trouble using WP_Query and the shortcode offset:
It’s fixed.
I used the shortcode after wp_query and used the offset, this including pause=true caused troubles.
I removed the wp_query and only used the shortcode, working fine now! My bad ??
Thanks.
Not sure if this is an issue. My code uses the same convention.
Thanks for the quick response. The URL isn’t public yet, or I would.
I am loading one featured marquee post at the top of my page using WP_Query. Then, further down the page, I offset your shortcode by one post, since the posts all pull from the same category. Perhaps there is something about the way I’ve done this. Maybe I should use the repeater to load the featured post instead of manual code.
I’ll investigate and report back. Any thoughts are appreciated.
Basically this is what I have:
<?php $my_query = new WP_Query( 'category_name=tech&posts_per_page=1' ); while ( $my_query->have_posts() ) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?> [featured post code] <?php endwhile; ?> ... <?php echo do_shortcode('[ajax_load_more post_type="post" posts_per_page="3" category="tech" pause="false" scroll="false" transition="fade" offset="1" button_label="More Posts"]'); ?>