Title: Andrew Ledwith's Replies | WordPress.org

---

# Andrew Ledwith

  [  ](https://wordpress.org/support/users/jaledwith/)

 *   [Profile](https://wordpress.org/support/users/jaledwith/)
 *   [Topics Started](https://wordpress.org/support/users/jaledwith/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jaledwith/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jaledwith/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jaledwith/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jaledwith/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jaledwith/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 46 total)

1 [2](https://wordpress.org/support/users/jaledwith/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/jaledwith/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/jaledwith/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/jaledwith/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Login No Captcha reCAPTCHA] Fatal error in v 1.6.1](https://wordpress.org/support/topic/fatal-error-in-v-1-6-1/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [7 years ago](https://wordpress.org/support/topic/fatal-error-in-v-1-6-1/#post-11458768)
 * The sites in question run on PHP 5.4.45.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Login No Captcha reCAPTCHA] Fatal error in v 1.6.1](https://wordpress.org/support/topic/fatal-error-in-v-1-6-1/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [7 years ago](https://wordpress.org/support/topic/fatal-error-in-v-1-6-1/#post-11458760)
 * Yeah, I guess it would help if I looked at the code after pasting it. 🤦‍♂️
 * The code you provided works great. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Login No Captcha reCAPTCHA] Fatal error in v 1.6.1](https://wordpress.org/support/topic/fatal-error-in-v-1-6-1/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [7 years ago](https://wordpress.org/support/topic/fatal-error-in-v-1-6-1/#post-11458710)
 * Thanks for your response. When I make the edit you suggest I now receive this
   error:
 * **Fatal error: Call-time pass-by-reference has been removed; If you would like
   to pass argument by reference, modify the declaration of get_option(). in /public_html/
   wp-content/plugins/login-recaptcha/login-nocaptcha.php on line 354**
    -  This reply was modified 7 years ago by [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Remote Media Libraries] Remote library won't display](https://wordpress.org/support/topic/remote-library-wont-display/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/remote-library-wont-display/#post-6194771)
 * No, I gave up and moved on.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Firelight Lightbox] Integrating with New RoyalSlider](https://wordpress.org/support/topic/integrating-with-new-royalslider/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/integrating-with-new-royalslider/#post-4395410)
 * Yes, here: [http://philgleasonart.com/](http://philgleasonart.com/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Loop with multiple post types not rendering archive pages](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/#post-3168549)
 * Okay, out of sheer frustration I decided to go about the problem an entirely 
   different way. I scrapped everything I’d changed in home.php and used the default
   loop. Then, in my functionality plugin, I added the following:
 *     ```
       function my_get_posts( $query ) {
       	if ( is_home() && $query->is_main_query() )
       		$query->set( 'post_type', array( 'post', 'flnavs_podcast', 'flnavs_video', 'flnavs_resources' ) );
       	return $query;
       }
       add_filter( 'pre_get_posts', 'my_get_posts' );
       ```
   
 * It achieves the desired results. Thanks to all who helped me try to figure this
   mess out.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Loop with multiple post types not rendering archive pages](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/#post-3168524)
 * Thanks for replying, racer x.
 * Unfortunately that did not fix the issue I’m having, but it is responding differently
   than before. No matter what I set posts_per_page to I’m able to load the first
   three pages of posts before returning a 404.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Loop with multiple post types not rendering archive pages](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/#post-3168502)
 * Unfortunately, after trying both your suggestions I’m still seeing the same problem.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Loop with multiple post types not rendering archive pages](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/#post-3168499)
 * The names are correct. I used the $post_type parameter I defined for each custom
   post type. I’ve had no problem getting each post type to appear on the first 
   page of the blog, so I know I’ve gotten the names correct all this time.
 * I just stumbled across something really strange. Like I said, I altered the number
   of posts per page from 10 to 5. I tried going to the second page of the blog 
   using those settings and it loaded successfully. But then I tried to go to the
   third page and I received a 404. Just to test things further I switched the posts
   per page from 5 to 3. I can load the first, second, and third pages of the blog,
   then I receive a 404 when I try to load the fourth. So, I can load no more than
   10 posts, and it’ll load fewer than that if the display setting doesn’t divide
   evenly into ten.
 * I’m completely baffled now.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Loop with multiple post types not rendering archive pages](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/#post-3168494)
 * Well, there are only 9 posts in the default post type, but after adjusting the
   settings panel to display 5 posts per page both the blog and first archive page
   render properly.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Loop with multiple post types not rendering archive pages](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/#post-3168444)
 * Yes. It looks pretty innocuous. It also performs just fine on other archive pages(
   category, author, etc.).
 *     ```
       function standard_pagination() { ?>
       		<div class="more_entries">
               	<div class="next-posts fl"><?php next_posts_link('&laquo; Older Posts') ?></div>
       		<div class="prev-posts fr"><?php previous_posts_link('Newer Posts &raquo;') ?></div>
       		</div>
       <?php } ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Loop with multiple post types not rendering archive pages](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/loop-with-multiple-post-types-not-rendering-archive-pages/#post-3168436)
 * Thanks for your reply. Unfortunately that didn’t fix the problem. I should have
   mentioned that I’d tried that solution before. Perhaps it’s needed in the final
   product but something else is missing too.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] [Plugin: Google Analytics for WordPress] Won't authenticate with Google Analytics.](https://wordpress.org/support/topic/plugin-google-analytics-for-wordpress-wont-authenticate-with-google-analytics/)
 *  [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-google-analytics-for-wordpress-wont-authenticate-with-google-analytics/#post-2990578)
 * I had the same problem, though it was not caused by the scenario described by
   waynmeyer. Thanks for your help.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress 3.4 Bug – Page Templates](https://wordpress.org/support/topic/wordpress-34-bug-page-templates/)
 *  [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/wordpress-34-bug-page-templates/page/2/#post-2813291)
 * This was very helpful. Thanks so much!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] [Plugin: Jetpack by WordPress.com] Stats dashboard widget not working properly](https://wordpress.org/support/topic/plugin-jetpack-by-wordpresscom-stats-dashboard-widget-not-working-properly/)
 *  Thread Starter [Andrew Ledwith](https://wordpress.org/support/users/jaledwith/)
 * (@jaledwith)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-jetpack-by-wordpresscom-stats-dashboard-widget-not-working-properly/#post-2765062)
 * Good suggestion. It seems to only occur in Chrome, even with all extensions turned
   off. I cleared the browser cache and server cache but neither action solved the
   problem.
 * I tried shutting down all my site’s plugins thinking it was a conflict with one
   of them. I turned them back on one by one but none caused the error again. The
   graph now appears as it should. So the problem has been resolved though I’m not
   sure what caused it to begin with.

Viewing 15 replies - 1 through 15 (of 46 total)

1 [2](https://wordpress.org/support/users/jaledwith/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/jaledwith/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/jaledwith/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/jaledwith/replies/page/2/?output_format=md)