Daniel Chase
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] PHP Warning and Notices related to iCalThis has not been resolved. It has been ignored.
As of today, I am still getting the same PHP notices.
[16-Nov-2021 14:21:36 UTC] PHP Notice: Trying to get property 'ID' of non-object in .../public_html/wp-content/plugins/the-events-calendar/src/Tribe/iCal.php on line 642 [16-Nov-2021 14:21:36 UTC] PHP Notice: Trying to get property 'post_modified' of non-object in .../public_html/wp-content/plugins/the-events-calendar/src/Tribe/iCal.php on line 646 [16-Nov-2021 14:21:36 UTC] PHP Notice: Trying to get property 'post_date' of non-object in .../public_html/wp-content/plugins/the-events-calendar/src/Tribe/iCal.php on line 647 [16-Nov-2021 14:21:36 UTC] PHP Notice: Trying to get property 'ID' of non-object in .../public_html/wp-content/plugins/the-events-calendar/src/Tribe/iCal.php on line 790 [16-Nov-2021 14:21:36 UTC] PHP Notice: Trying to get property 'post_title' of non-object in .../public_html/wp-content/plugins/the-events-calendar/src/Tribe/iCal.php on line 689 [16-Nov-2021 14:21:36 UTC] PHP Notice: Trying to get property 'post_content' of non-object in .../public_html/wp-content/plugins/the-events-calendar/src/Tribe/iCal.php on line 691 [16-Nov-2021 14:21:36 UTC] PHP Notice: Trying to get property 'ID' of non-object in .../public_html/wp-content/plugins/the-events-calendar/src/Tribe/iCal.php on line 695
Oluisrael,
I am using 1 input field and it is plain text.
Thanks.
I have the options “Load Timepicker Style” and “Load Datepicker Style” unchecked in the admin.
Viewing the page source (HTML), I can see that the javascript is still loading for the time and date pickers.
<script type='text/javascript' src='.../wp-content/plugins/product-input-fields-for-woocommerce/includes/js/alg-datepicker.js?ver=1.3.1' id='alg-datepicker-js'></script> <script type='text/javascript' src='.../wp-content/plugins/product-input-fields-for-woocommerce/includes/js/alg-weekpicker.js?ver=1.3.1' id='alg-weekpicker-js'></script> <script type='text/javascript' src='.../wp-content/plugins/product-input-fields-for-woocommerce/includes/js/jquery.timepicker.min.js?ver=1.3.1' id='jquery-ui-timepicker-js'></script> <script type='text/javascript' src='.../wp-content/plugins/product-input-fields-for-woocommerce/includes/js/alg-timepicker.js?ver=1.3.1' id='alg-timepicker-js'></script> <script type='text/javascript' src='.../wp-content/plugins/product-input-fields-for-woocommerce/includes/js/alg-wc-product-input-fields.js?ver=1.3.1' id='alg-wc-product-input-fields-js'></script>
Here is a local path of the settings page where these settings are located:
/wp-admin/admin.php?page=wc-settings&tab=alg_wc_pif
The options I am referring to are “Load Timepicker Style” and “Load Datepicker Style.”A screenshot can be viewed here:
https://drive.google.com/file/d/1vEG9KeHV36kxxQlESU7iqKw24GEdqqP2/view?usp=sharingIdeally, users would want options to disable the unused JavaScript as well.
Forum: Plugins
In reply to: [WooCommerce Product Table Lite] Database Error wcpt_cleanup_sessionsKartik, thank you for your prompt reply.
Thank you, SiteGround Team!
Thank you, Hristo!
Just a quick follow-up question. In Cloudflare Speed Optimization, should I disable the “Automatic Platform Optimization for WordPress” setting? This setting relies on the Cloudflare plugin I just disabled.
Thank you, Hristo.
Forum: Plugins
In reply to: [Speed Optimizer - The All-In-One Performance-Boosting Plugin] CF DetectionI don’t know either. I wish they elaborated more on their changelog. Everything they put there is vague and not very helpful.
Forum: Plugins
In reply to: [Speed Optimizer - The All-In-One Performance-Boosting Plugin] 301 RedirectI have created a cron job script to clear all cache. Perhaps it could help someone else as well. This script will purge all SG cache (Dynamic cache, Memcached & combined/minified assets) twice a day. Just simply add this to your theme’s functions.php file.
//SG Optimizer Purge All Cache Twice Daily Schedule if ( ! wp_next_scheduled( 'sg_purge_cron_hook' ) ) { wp_schedule_event( time(), 'twicedaily', 'sg_purge_cron_hook' ); } add_action( 'sg_purge_cron_hook', 'sg_purge_cron_function' ); function sg_purge_cron_function() { if (function_exists('sg_cachepress_purge_everything')) { sg_cachepress_purge_everything(); } } //To remove this schedule uncomment this below: //wp_clear_scheduled_hook( 'sg_purge_cron_hook' );
Forum: Plugins
In reply to: [Speed Optimizer - The All-In-One Performance-Boosting Plugin] 301 RedirectI have encountered similar redirects in the past week on 3 of my websites when not logged in. I was able to resolve the issue by clearing the purging SG cache. However, my issue is not with URL parameters from Google ads or Facebook. My issue is just any random page on the website can start redirecting to the homepage.
I am thinking of creating a cron/scheduled task to clear the cache every 8 hours or so. Because it is a super waste of time for me to have to test the website all day long looking for redirect issues.
- This reply was modified 3 years, 8 months ago by Daniel Chase.
Thank you @bcworkz for the guidance.
Here is the code that worked for me to remove the meta tag entirely:
add_filter( 'wp_robots', array(), PHP_INT_MAX );
Forum: Plugins
In reply to: [WooCommerce Sold Individually for Variations] Coupons No Longer WorkingThank you for your response, sorry to waste your time. It turns out it was Woo Subscriptions causing the issue after a WooCommerce core update.
Thank you, @bluecap I had this same problem. That fixed it.