with the current version installed (21.73
), Site Health lists a critical issue caused by this plugin.
An active PHP session was detected Performance
A PHP session was created by a session_start() function call. This interferes with REST API and loopback requests. The session should be closed by session_write_close() before making any HTTP requests.
The function tm_get_session_id()
– which is i.e. called at the init
hook – in libs/functions.php
on line 257
does not check, whether the request is performed in a REST context. So it probably should be something like:
function tm_get_session_id() {
if (!wp_is_rest_endpoint() && !session_id()) {
session_start();
}
return session_id();
}
—
The wp_is_rest_endpoint()
seems not to fix this… Maybe you might have a better idea.
Best regards,
Daniel
I’d like to see an option that the order is hidden until a specific date that has been chosen in de checkout process by the customer. And show the order at the day what have been chosen in the drivers page.
Now everything needs to be manually managed and is a very time consuming job. This way the order mistakes will be reduced drastically.
This way the drivers and the managers won’t make a mistake to deliver the order the wrong day.
]]>Tx
They helped me with this tweak in a day, after I purchased the plugin. That’s super fast and very kind of them!
Thank you very much!
]]>Find line 48 in edit-next-previous-post-admin.php (/wp-content/plugins/buttons-to-edit-next-previous-post) that looks like this:
if( strpos($screen->parent_file, 'edit.php') !== FALSE && in_array($screen->id, $supported_types) && in_array($screen->post_type, $supported_types) && $screen->action != 'add'){
and change it to this:
if (strpos($screen->parent_file, 'edit.php') !== FALSE && $screen->action != 'add' && strpos($screen->id, 'edit-') === false) {
The buttons should now appear on all post types, including custom ones.
]]>First, i like your plugin.
Question why my Animation For End Popup is not smooth, any way to make fade a bit longer, or more obvious its a fading out.
Cheers
Iwan
]]>As WooCommerce product ID is autogenerated (and not editable), I want the shortcode for the Free Downloads plugin download button to retrieve products by the SKU (which I can import in whatever format I choose).
Any tips on how I can edit or configure the plugin to do so?
Thanks a lot!
]]>As woocommerce product ID is autogenerated (and not editable), I want the shortcode for the plugin download button to retrieve products by the SKU (which I can import in whatever format I choose).
Any tips on how I can edit or configure the plugin to do so?
Thanks a lot!
]]>