createscape
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Responsive Menu] can’t select textHello – I’m just checking to see if you’ve had a chance to look at this issue.
Thanks
Forum: Plugins
In reply to: [WP Responsive Menu] can’t select textHello Magnigenie,
I’ve set up a test site and I can confirm that the issue is still there with the latest version, and with the other plugins turned off. I also tested on a couple other themes to rule out the theme because it is custom built. I usually test with the Twenty Twenty Four theme but the Appearance > Menu admin menu disappears when I switch, so I tested with the Elementor theme and GeneratePress.
Thanks
Forum: Plugins
In reply to: [WP Responsive Menu] can’t select textHello Magnigenie,
My clients are still having this issue and would like to see it resolved. Could you update us on whether this has been fixed in a recent version?
ThanksHello Antonio,
I can confirm that the first three conditions apply to us, but I’m not sure about “Terms selection not including ancestors”. How do I check if that one is true?
We are using:
- WooCommerce Categories (Heirarchical)
- Checkbox filter type
- Show Hierarchy is set to “Yes”
Thanks
Hello Antonio,
I can confirm that the filter preset exists and is enabled, the preset has filters enabled, and the filter has terms. I also checked to see that the products and categories weren’t accidentally deleted.
Thanks
Forum: Plugins
In reply to: [Order Limit for WooCommerce] This plugin didn’t workIt didn’t work for me either. I was trying to add a limit of 10 per order to a simple product.
Forum: Plugins
In reply to: [Elementor Website Builder - More than Just a Page Builder] OMG. PINK Editor?I agree – I don’t like this design change. I find the level of contrast with the black / white distracting. Maybe save this for a low-vision version?
- This reply was modified 1 year, 7 months ago by createscape.
Hello,
I am seeing something very similar on a client’s site with Spectra. The columns don’t load properly and it looks like half the page is missing. If I login and resave the page it will fix itself. I don’t have caching on this site. I’m using the latest version of Spectra.
This only just started in the last week or two.
- This reply was modified 1 year, 8 months ago by createscape.
Forum: Plugins
In reply to: [WooCommerce] out of stock variations still showing on product pageI added this to functions.php and it’s working fine now.
// Change limit to dynamic product variations function custom_wc_ajax_variation_threshold( $qty, $product ) { ? ? return 50; } add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 10, 2 );
Forum: Plugins
In reply to: [WooCommerce] out of stock variations still showing on product pageHere’s an article I found on this topic:
Forum: Plugins
In reply to: [WooCommerce] out of stock variations still showing on product pageHello Roxy,
I think I may have found the problem. It works when there are 30 or fewer variations, but stops working at 31 variations. My client has 40 variations for this product. Also, variations without a price set show at 31 variations.
Can you confirm or test this?
My other product settings are:
-Limit one purchase per order
-downloadable
-manage stock turned on
-virtual productsThanks!
Forum: Plugins
In reply to: [WooCommerce] out of stock variations still showing on product pageHello Roxy,
I tried those things (I cleared one cache in the hosting panel and my browser cache) and none of them helped, but I did find that it is working on another product.
For some reason it is working there but not on the other one, even though I’ve set the same settings. I’m going to try just starting the product over and see if that works. (Duplicating didn’t work)
Thanks
- This reply was modified 1 year, 8 months ago by createscape.
Forum: Plugins
In reply to: [WooCommerce] out of stock variations still showing on product pageHello Xue28,
Thank you for your reply. I switched to Storefront and I still see the same problem. I didn’t see anything of note in the Status > Logs. There’s a test log and some image regeneration logs.
I’ve removed the password protection from the page so you can see:
https://staging7.pwdcans.org/product/caer-exam/
11:20 – 11:25 still shows even though it is out of stock.
Thanks for your support,
Crystal
Hello Peter,
Thank you for the detailed response. Fortunately I was able to convince my client to switch to a better hosting plan instead (they had other issues too). I will remember the Diagnostics option next time I run into a problem.Crystal
Forum: Plugins
In reply to: [Invoices for WooCommerce] Exclude categoryI found something that sort of works…
//Exclude Category from PDF Invoices function bewpi_skip_invoice_generation( $skip, $status, $order ) { $no_invoice_cats = array(34); $items = $order->get_items(); $order_cats = array(); foreach ($items as $item_id => $item) { // get categories for item, requires product $product = $order->get_product_from_item( $item ); if ($product) { $terms = get_the_terms( $product->id, 'product_cat' ); if (empty($terms)) { continue; } foreach ($terms as $key => $term) { $order_cats[$term->term_id] = $term->name; } } } // get array of category matches $cat_matches = array_intersect($no_invoice_cats, $order_cats); if ( count($cat_matches) > 0 ) { // 1 or more matches, don't attach invoice return false; } else { return true; } } add_filter( 'bewpi_skip_invoice_generation', 'bewpi_skip_invoice_generation', 10, 3 );
But it would still be problematic if someone ordered one item that was in the excluded category, and one that wasn’t. With the code above it doesn’t generate any invoice.