jamesbirchmore
Forum Replies Created
-
Here is a video I recorded of the behavior
https://drive.google.com/file/d/1BYCkK3CvqXRDhTUB0sON8Dp9Vip51O4i/view?usp=sharing
Figured it out. Had to use this filter instead
add_filter( ‘woocommerce_shipping_package_name’, ‘custom_shipping_package_name’ );
function custom_shipping_package_name( $name ) {
return ‘Postage & Packaging’;
}Forum: Plugins
In reply to: [Query Monitor] Query monitor + Litespeed ESI problemYes, using QM 3.6.5. Nothing in the console. I can see the HTML that QM generates in the source code. Just clicking anything in the QM menu does nothing when Litespeed ESI is turned on. Works fine in the Admin dashboard, just not on the frontend.
Forum: Plugins
In reply to: [WooCommerce] Some orders showing only Parent SKU’s – not variation skusJust experienced the same issue. Orders have come in with just the parent SKU listed not the variation SKU. And in one case for a product variation that was out of stock.
Using WooCommerce 4.7.0.
Forum: Plugins
In reply to: [Query Monitor] Query monitor + Litespeed ESI problemJust wanted to chime in and say I have the same issue. With ESI enabled, QM no the front end fails to load correctly. No JS errors, but clicking on anything in the QM menu, does not open the window.
Was working until recently.
Will follow up with Litespeed as well.
Thank you for your help with this. The plugin developers have identified the issue, and resolved it.
I believe it’s just passing in a single string value
string(5) "18765"Using the latest version of the plugin Version 4.7.2.1
I have referred the plugin developers to this thread, so hopefully they can fill in the rest.
Yes, that goes away when Show Single Variation is disabled
SELECT COUNT(DISTINCT(relevanssi.doc))
FROM ***_relevanssi AS relevanssi
WHERE relevanssi.term = ‘*******’
AND relevanssi.doc NOT IN (
SELECT DISTINCT(tr.object_id)
FROM ***_term_relationships AS tr
WHERE tr.term_taxonomy_id IN (6,9))
AND relevanssi.doc NOT IN (
SELECT DISTINCT(tr.object_id)
FROM ***_term_relationships AS tr
WHERE tr.term_taxonomy_id IN (498))
AND ( relevanssi.doc IN (
SELECT DISTINCT(posts.ID)
FROM ***_posts AS posts
WHERE posts.post_type IN (‘product’) ) )I believe it adds a
post_parent__not_into the WP_Query