nickterry
Forum Replies Created
-
I just did a fresh install with a new nginx server running PHP 8.2 and ran into this with admin-ajax.php 502 errors and tried even a ‘WP_MEMORY_LIMIT’ of ‘1024M’
I noticed it when trying to save/update WooCommerce orders and saving Gravity Forms.
I did not come across these errors with PHP 7.4.
Disabling QM fixed the issue.
Website is back up. All is well. ??
I also have wpDiscuz installed and was getting this error.
I uninstalled wpDiscuz and I am still receiving this error.
I unchecked “Load all Javascript files in single file” and I stopped receiving the error.
I rechecked “Load all Javascript files in single file” and I am still receiving the error.
Is there something I’m missing?
Forum: Plugins
In reply to: [Yoast SEO] Duplicated pages in Yoast SitemapThis is happening for me as well. I am not sure if this is by design, an issue, or what.
Just figured it out that it was just to style the help text…
Changed line 1339 from:
echo '<script>gform_apply_tooltip(".tooltip_infusionsoft_tag", "gformsstyle", "topRight", "bottomLeft");</script>';
to:
echo '<script>jQuery( ".tooltip_infusionsoft_tag" ).tooltip();</script>';
Simply commenting out line 1339 in infusionsoft.php in this plugin will do the trick. Since this is the first time using the plugin, I am not sure what the tooltips content had in it, if it is purely help text or something more..
Yes, I am receiving the same error with Gravity Forms 1.7.7
ReferenceError: gform_apply_tooltip is not defined
[Break On This Error]
gform_apply_tooltip(“.tooltip_infusionsoft_tag”, “gformsstyle”, “topRight”, “bottomLeft”);This is likely because Gravity Forms is now using a JQuery UI for their tooltips rather than qTip
From Gravity Forms blog:
“Updated tooltips so that they use the jQuery UI Tooltip script instead of qTip.”Likely the fix for this plugin is to change all references to gform_apply_tooltip to the new way of doing tooltips (however that may be).
I see where the reference to the tooltips are in the code – line 1339 in infusionsoft.php – I am not sure how to go about fixing it.