Austin Ginder
Forum Replies Created
-
Forum: Plugins
In reply to: [Recipe Card] Doesn’t saveOk after some more development, I successfully removed the remote call on save. Here is a fork of the plugin: https://github.com/austinginder/recipe-card. Hopefully Yumprint will release an update and/or fix things on there end. If not this plugin is only useable by forking and removing the remote API calls.
Forum: Plugins
In reply to: [Recipe Card] Doesn’t saveSame problems here. Yes it appears the plugin is attempting to send data to api.yumprint.com which is no longer online. I sent an email to [email protected] however haven’t heard anything back.
I also look through the plugin’s code to see if the plugin could be used without the 3rd party service. The JS code is difficult to read as it’s complied but I’m thinking that the 3rd party service might be required to use this plugin. If anyone figures out how to use the plugin without the 3rd party calls, let me know.
Got it. Thanks for the followup. Think I’ll mentioned this to the ManageWP guys incase it’s something they are seeing.
Forum: Plugins
In reply to: [Membership 2] WordPress 4.7 unauthorized redirect loopI ended up replacing Membership 2 with a much simpler plugin call My Private Site. Sorry not going to be able to assist in troubleshooting this issue. Going to mark this issue resolved.
Just following up, the above script has been successfully in reduce load on my WP Engine servers. I will say Jetpack did not caused my high load issues. Whenever a server get’s overcapacity any usage will destabilize the server. Jetpack is easy to blame as it’s the most prominent in the accesslogs and cron jobs. I would consider the use of the above script a temporary workaround. With WP Engine the typically permanent fix is to reduce the number of installs on a particular server.
Forum: Plugins
In reply to: [WTI Like Post] Caching issues on KinstaTheir caching system is at the server level and runs whether or not you have their own Kinsta Caching plugin installed. Very similar to WP Engine.
They don’t need anything html related. They need something programmatically usable, like a URL element, a cookie, etc. This is the site I’m working on: https://chaptersee.com/books/on-science-and-faith-an-excerpt-from-the-book-the-beautiful-scientist/. Your plugin running at the bottom.
I’m dealing with the same issues with my WP Engine servers. I came up with the following code. See any issues with it? It seems to work when using a cron viewer. I have not tested on a production server yet.
// Jetpack custom cron schedule to reduce cron load add_filter( 'jetpack_sync_incremental_sync_interval', function() { return '10min'; } ); add_filter( 'jetpack_sync_full_sync_interval', function() { return '10min'; } ); add_filter( 'cron_schedules', 'jetpack_custom_cron_schedule' ); function jetpack_custom_cron_schedule( $schedules ) { if( ! isset( $schedules["10min"] ) ) { $schedules["10min"] = array( 'interval' => 600, 'display' => __( 'Every 10 minutes' ) ); } return $schedules; }Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Missing admin menuThat worked! Thanks for the fix.
Hmm loading jquery-cookie doesn’t seem to correct anything. Here is a link to my staging site which has v1.4.13 http://refreshingmoun.staging.wpengine.com/activities/school-field-trips/ and a link to production which has v1.4.12 https://refreshingmountain.com/activities/school-field-trips/.
Yes, for now I’m using some CSS injection. This block of codes handles the backend and frontend code when logged in.
// Remove Yoast SEO nag alerts add_action('wp_head', 'remove_yoast_counters'); add_action('admin_head', 'remove_yoast_counters'); function remove_yoast_counters() { // If Yoast plugin active if (is_plugin_active('wordpress-seo/wp-seo.php') and is_user_logged_in()) { echo '<style> #wpadminbar .yoast-issue-counter { display: none; } #adminmenu li#toplevel_page_wpseo_dashboard .awaiting-mod span, #adminmenu li#toplevel_page_wpseo_dashboard span.update-plugins span { display: none; } </style>'; } }Just installed the development version of your plugin and can confirm everything is working with ACF Pro and Download Monitor. Thanks!
Ah confirmed. It’s ACF. I temporary disabled ACF 5.3.8.1 and the issue went ahead. Reenabled and it’s back.
After enabling SCRIPT_DEBUG I’ve pinpointed the error down to this line: https://cloudup.com/cTuj2DZIH9l. Here is a copy of the error: mla-media-modal-scripts.js?ver=2.25:1247 Uncaught RangeError: Maximum call stack size exceeded
@david Lingren Ah the screencast and version 2.22 was only a coincidence as I was testing various versions. The same issues happen for the tested versions: 2.22, 2.24 and 2.25. I can confirm, with the updated version 2.25, I’m still seeing this error.
Forum: Plugins
In reply to: [HeadSpace2 SEO] Problem with WP 4.5For my site, it’s breaking anywhere I’m using Advanced Custom Fields on the admin. Confirmed this is an issue as found the following lines of code.
wp-content/plugins/headspace2/js/headspace.js 26: $( 'a[href=#toggle]' ).click( function(){ 61: $( 'a[href=#toggle]' ).click( function(){Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Subscribe "Add to Google" not workingYou can try yourself. I am already logged in. Here is what it looks like on my end: https://cloudup.com/cBjARnn4B-H.