kisabelle
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Legacy REST API@shaunbowen Just wanted to chime and say that I am a web developer and I’m in the same boat.
I have had a client approach me regarding this and it’s completely unclear whether the site is actually using the Legacy API or not. The provided article does not adequately clarify how to determine this.
I checked the page you mentioned (WooCommerce → Settings → Features → Legacy API) and I do not see API keys but there aren’t any empty fields for API keys either. Is this to be expected? Or could it be that your directions were incorrect and we are looking in the wrong screen for these API keys?
If we don’t find any webhooks using the Legacy API can we be confident the site is not using the Legacy API or is it possible the theme or other plugins may still be using it?
Appreciate any insight that anyone is able to provideHi all,
I just wanted to report that this is not only an issue on WP Engine – I have a client running this plugin whose site is hosted on Kinsta and their site has been experiencing this issue for the past couple months. I’m very relieved to have stumbled on this thread, as I had no solid leads on what plugin was causing this issue – until now.
My client is extremely frustrated by all the downtime, and rightfully so!
When they asked me is this normal I had to tell them it is absolutely not normal. We’ve got clients whose WordPress sites have been running for years that have NEVER required us to flush / resave the permalinks.
- This reply was modified 2 years, 10 months ago by kisabelle.
Forum: Plugins
In reply to: [Contact Form 7] [wpcf7_add_form_tag] function not workingHaving the same issue. Form tag is being directly outputted to the form instead of being handled.
eg: [my_custom_form_tag] is being displayed on the front end of the form
Thanks @beeteam368 for sharing the fix.
Some further digging. From the changelog for 5.7.5:
- Form-tags manager: Cancels form-tag conversion if the tag is not in the valid format.
Relevant code changes on Github are here: https://github.com/takayukister/contact-form-7/commit/176d14848d529b1ff5c42fbeb90f13db230adadd
It looks like if you set the ‘name-attr’ parameter to true, it checks for attributes and if it doesn’t find any then it cancels the form tag output.
Forum: Alpha/Beta/RC
In reply to: Unable to make more than one list item per list@juliengemaddis Thank you so much for sharing. I had the exact same issue and your solution was what I needed to resolve the issue.
WordPress team should provide a big disclaimer when they release changes like this.Update: I needed to change all tables collations to utf8mb4_unicode_520_ci to resolve this issue.
Forum: Plugins
In reply to: [The Events Calendar] Plugin v6.06 crashes siteThis update crashed one of my clients’ sites today. Can you please send me an update when this is fixed.
Forum: Plugins
In reply to: [WooCommerce] create-wc-extensionHi, just wanted to put it out there that I just ran into the same issue described above. I’ve looked at the provided links and checked out the Getting Started Guide (https://developer.woocommerce.com/extension-developer-guide/getting-started/) but we are running into errors there too.
For example, your build process required me to install pnpm but then fails completely on the latest version of pnpm:
https://github.com/woocommerce/woocommerce/issues/32885
All we had hoped to do was add a column to one of the admin reports and it has been like pulling teeth – we are now 8+ hours in and have gotten nowhere. With the previous PHP architecture this would have taken less than an hour to accomplish. This is extremely frustrating.
It would be really nice if you could ensure that your build process is working consistently so that people can follow your documentation successfully
- This reply was modified 3 years, 11 months ago by kisabelle.
Hello, I also got this fatal error on two of my client’s sites yesterday after updating to the latest version of Elementor. We had to roll back to the previous version of Elementor to get the sites back online.
Please publish a fix ASAP.
Forum: Plugins
In reply to: [Nested Pages] Parent Page Not AssignedHi there, I see that you haven’t replied on this topic. Unfortunately I’ll have to leave a review to warn others not to use this with Yoast SEO, and discontinue using the plugin if this is not addressed.
It’s really too bad, as my team really enjoyed using this plugin!
Forum: Plugins
In reply to: [Nested Pages] Parent Page Not AssignedUpdate 2: It appears that the canonical URL is updated after manually updating the page. This leads me to believe that editing the nesting structure using Nested pages is not triggering the hooks that are needed for Yoast SEO to update.
If you could look into this ASAP it would be much appreciated.
Forum: Plugins
In reply to: [Nested Pages] Parent Page Not AssignedUpdate: Nevermind, the Parent page is assigned but for some reason the Gutenberg editor takes such a long time to load the title of the Parent page that the field appears blank for quite a while after opening the edit screen.
This appears instead to be an issue with Yoast SEO not updating the canonical URL after the page was updated.
Forum: Plugins
In reply to: [Nested Pages] Broken with 5.9I think it is still broken as the Parent page attribute is not updated when dragging?
Regarding the image size restrictions, I was seeing that out of the initial images that were loaded the restriction was in effect but scrolling down further in the Media Library modal window the images further down were not restricted by the minimum sizes anymore. Maybe it’s only when further images are loaded via AJAX as you scroll down that the issue occurs?
Regarding the filter, below is an example of how to use it. This is actually copied out of the Advanced Custom Fields: Image Aspect Ratio Crop Field, it’s designed to prevent the cropped images from appearing in the Media Library.
add_filter('ajax_query_attachments_args', 'myFilterAjaxQueryAttachmentArgs'); function myFilterAjaxQueryAttachmentArgs($args) { write_log('filter ajax query attachment args'); if (empty($args['post__in'])) { $args['meta_query'] = [ [ 'key' => 'acf_image_aspect_ratio_crop', 'compare' => 'NOT EXISTS', ], ]; } return $args; }Note that I am calling a custom function,
write_log()which writes to the debug log, this is how I was able to tell that the filter was being bypassed.Update: I was able to resolve this by disabling the following setting:
Enable Media Manager Enhancements
Check/uncheck this option to enable/disable Media Manager Modal Window Enhancements.@nataliemac That is great to hear! Thanks for letting me know.