forgetme
Forum Replies Created
-
@esaleco,
After months of no response from the plug-in developer, multiple plug-in updates that made no difference, and no luck getting customer support to put me in touch with the plug-in developers, I believe I have resolved the issue myself. Use at your own risk as I am not the plug-in developer, but this is working for me to resolve the issue mentioned above.Go into the following php file: /wp-content/plugins/easyship-woocommerce-shipping-rates/easyship.php
Find Lines 67-74:
/** * Register a session */ public function register_session() { if (session_status() == PHP_SESSION_NONE && !headers_sent()) session_start(); }And replace lines 67-74 with the following:
/** * Register a session */ public function register_session() { if (session_status() == PHP_SESSION_NONE && !headers_sent()) { session_start(); session_write_close(); } }Run Site Health test and the errors should all be gone.
@daniel_richard and @kadolf1024,
After months of no response from the plug-in developer, a plug-in update that made no difference, and no luck getting customer support to put me in touch with the plug-in developers, I believe I have resolved the issue myself. Use at your own risk as I am not the plug-in developer, but this is working for me.Go into the following php file: /wp-content/plugins/easyship-woocommerce-shipping-rates/easyship.php
Find Lines 67-74:
/** * Register a session */ public function register_session() { if (session_status() == PHP_SESSION_NONE && !headers_sent()) session_start(); }And replace lines 67-74 with the following:
/** * Register a session */ public function register_session() { if (session_status() == PHP_SESSION_NONE && !headers_sent()) { session_start(); session_write_close(); } }Run Site Health test and the errors should all be gone.
@macmanx
I’m seeing this as well in my debug logs, I followed the path mentioned above and sure enough it is Jetpack causing this.URL for my site is: https://forgetmeknot.co
Wordpress 5.5
Woocommerce 4.4.1
Jetpack 8.8.2Original Code (Lines 281-283):
// loop through products in the order and queue a purchase event. foreach ( $order->get_items() as $order_item_id => $order_item ) { $product = $order->get_product_from_item( $order_item );Since this plug-in doesn’t appear to be supported anymore the fix for this is to go to \wp-content\plugins\checkout-address-sugessions-for-woocommerce\lib\class.cas.woocommerce.php
Change:
/* Admin Settings Menu */ public function cas_rkc_show_menu(){ add_submenu_page( 'woocommerce', 'Checkout Address Sugessions for WooCommerce', 'Checkout Address Sugessions', 'manage_options', 'cas_rkc_googlemap', array($this,'cas_rkc_googlemap_page'), 'dashicons-location', 1000 ); add_action( 'admin_init', array($this,'cas_rkc_menu') ); }To:
/* Admin Settings Menu */ public function cas_rkc_show_menu(){ add_submenu_page( 'woocommerce', 'Checkout Address Sugessions for WooCommerce', 'Checkout Address Sugessions', 'manage_options', 'cas_rkc_googlemap', array($this,'cas_rkc_googlemap_page'), 1000 ); add_action( 'admin_init', array($this,'cas_rkc_menu') ); }Yes, javascript is enabled. The issue that I’m seeing is the it is trying to call an external source with an internal URL to access the s-202025.js file. If I go to https://stats.wp.com/s-202025.js then that works, but the plug-in is calling https://forgetmeknot.co/wp-content/plugins/jetpack/https:/stats.wp.com/s-202025.js according to Chrome’s console.
Failed to load resource: the server responded with a status of 404 ()
/wp-content/plugins/jetpack/https:/stats.wp.com/s-202025.jsForum: Plugins
In reply to: [Tidio – Live Chat & AI Chatbots] Change position of tidio chat mobile viewYes I have tried all 3 forms below in my the style.css of my child theme with no change.
<style> #tidio-chat-iframe { bottom: 0px !important; } @media only screen and (max-width: 980px) { #tidio-chat-iframe { bottom: 40px !important; } } </style>OR
#tidio-chat-iframe { bottom: 0px !important; } @media only screen and (max-width: 980px) { #tidio-chat-iframe { bottom: 40px !important; } }OR
@media only screen and (max-width: 980px) { /*Edit the 0px number according to your website for mobile*/ #tidio-chat-iframe { bottom: 40px !important; } }Forum: Plugins
In reply to: [Tidio – Live Chat & AI Chatbots] Change position of tidio chat mobile viewI tried adding the code below to my Style.css sheet in my child template, but it isn’t shifting the button up in the mobile.
@media only screen and (max-width: 980px) { /*Edit the 0px number according to your website for mobile*/ #tidio-chat-iframe { bottom: 40px !important; } }- This reply was modified 6 years, 3 months ago by forgetme.
Forum: Plugins
In reply to: [Easyship WooCommerce Shipping Rates] Warning: session_start()+1 I’m seeing this as well
+1 I’m seeing this on my site as well.
Forum: Plugins
In reply to: [Sezzle Woocommerce Payment] PHP error during checkout with Sezzle.WordPress 5.3.2
WooCommerce 3.9.1
Sezzle WooCommerce Payment 3.0.2
PHP 7.3.14
MySQL MariaDB 10.4.12Forum: Plugins
In reply to: [Sezzle Woocommerce Payment] PHP error during checkout with Sezzle.2020-02-09T21:08:13+00:00 CRITICAL Uncaught Error: Call to a member function get_transaction_id() on bool in /home/forgetme/public_html/wp-content/plugins/sezzle-woocommerce-payment/woocommerce-gateway-sezzle.php:522
Stack trace:
#0 /home/forgetme/public_html/wp-includes/class-wp-hook.php(288): WC_Gateway_Sezzlepay->sezzle_payment_callback(”)
#1 /home/forgetme/public_html/wp-includes/class-wp-hook.php(312): WP_Hook->apply_filters(”, Array)
#2 /home/forgetme/public_html/wp-includes/plugin.php(478): WP_Hook->do_action(Array)
#3 /home/forgetme/public_html/wp-content/plugins/woocommerce/includes/class-wc-api.php(148): do_action(‘woocommerce_api…’)
#4 /home/forgetme/public_html/wp-includes/class-wp-hook.php(288): WC_API->handle_api_requests(Object(WP))
#5 /home/forgetme/public_html/wp-includes/class-wp-hook.php(312): WP_Hook->apply_filters(NULL, Array)
#6 /home/forgetme/public_html/wp-includes/plugin.php(544): WP_Hook->do_action(Array)
#7 /home/forgetme/public_html/wp-includes/class-wp.php(387): do_action_ref_array(‘parse_request’, Array)
#8 /h in /home/forgetme/public_html/wp-content/plugins/query-monitor/collectors/php_errors.php on line 82