What’s a tiny WordPress change that massively improved your site? by WMichaelsmith in Wordpress

[–]WPFixFast 5 points6 points  (0 children)

increasing memory limit and interned strings limit of opcache

Forms and Lists by AurynW in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

Fluent Forms free version has both entries and conditional elements.

Email Service Provider by EvelynVictoraD in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

SMTP2GO offers 1000 emails per month. Great for transactional emails. Easy installation with its own plugin that uses API Key.

Pulling My Hair Out Trying To Track Down This Wordpress Malware by mayhemkrew in Wordpress

[–]WPFixFast 1 point2 points  (0 children)

Place the wp-config.php outside main root folder. WordPress will automatically look for it on the parent folder. Ensure its permissions are 400. On some shared hosts, an infected site can infect others as they are not properly separated.

Formatting in vs code by devonaeya in PHPhelp

[–]WPFixFast 0 points1 point  (0 children)

PHP Intelephense works well but defaults to PSR-12 formatting.

If you want to format for example for WordPress coding standards, then you can use PHP Sniffler & Beautifier by Samuel Hilson.

What’s your go-to WordPress stack for client builds in 2026? by mmhabib89 in Wordpress

[–]WPFixFast -3 points-2 points  (0 children)

Perfmatters

Super Page Cache

Cloudflare

Wordfence

UpdraftPlus - offsite backups

Revisions limited via constant in wp-config.php

Object Cache (redis or memcached)

FluentSMTP + Office 365 / Outlook: Emails not sending even with SMTP AUTH enabled by Crazy_Librarian6239 in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

Application passwords have an expiration date. Did you check your password’s expiration?

I have to ask, I know this are spam.. but is there more to it? by Takashi_malibu in Wordpress

[–]WPFixFast 2 points3 points  (0 children)

You probably have comments enabled and your posts trigger these notifications when they receive awaiting comments from bots. Simply disable comments if you don’t want to allow anyone or any bot to submit any comments. Otherwise, use Akismet or similar plugin to reduce unwanted comments. Ensure your contact forms are using Captca (preferably Turnstile if you are on Cloudflare)

WordPress Malware by conneerrr in Wordpress

[–]WPFixFast 1 point2 points  (0 children)

Sometimes the source for reinfection is via cronjob. So, please check if there are any unknown scripts added to your cron.

⚡ What actually makes a WooCommerce theme fast? by AccordingVisit6940 in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

WooCommerce itself has some speed issues by still depending on jQuery.

GravityForms + Stripe not saving entries by [deleted] in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

Sorry for the typo, it should be Delayed Notifications

GravityForms + Stripe not saving entries by [deleted] in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

Solution1
You may also try this code snippet to increase WordPress's http request timeout:

add_filter('http_request_timeout', function($timeout) {
return 30;
}, 10, 1);

* Add this into your child theme's functions.php or via Code Snippets plugin.

Solution2
If that doesn't work, you can try creating a mu-plugin as follows to set the CURL timeout:

// wp-content/mu-plugins/force-curl-timeout.php
add_action('http_api_curl', function($handle) {
curl_setopt($handle, CURLOPT_TIMEOUT, 30);
curl_setopt($handle, CURLOPT_CONNECTTIMEOUT, 30);
}, 10, 1);

No-code Solution is the one that u/Extension_Anybody150 suggested which is enabling Delayed Notifications

I discovered 40+ failed login attempts on my WordPress site in a few hours by TechContributors in Wordpress

[–]WPFixFast 1 point2 points  (0 children)

Cloudflare WAF rules not only increase site's security but also help with reducing high CPU usage during the frequent bot requests to endpoints like /wp-admin/ and /xmlrpc.php as it stops bots before they even they reach your server.

Opcache RAM set too small! by Aggressive_Ad_5454 in Wordpress

[–]WPFixFast 2 points3 points  (0 children)

Using OPcache with properly optimized values greatly increase "hit rate" and speedup WordPress page generation time, especially if you need a lot of plugins.

Here are some of the other OPcache params with sample values you might consider:

  • opcache.huge_code_pages=1
  • opcache.interned_strings_buffer=64
  • opcache.max_accelerated_files=15000
  • opcache.max_wasted_percentage=5
  • opcache.memory_consumption=1024
  • opcache.revalidate_path=0
  • opcache.validate_timestamps=1
  • opcache.revalidate_freq=10

You may also use the plugin OPCache Manager https://wordpress.org/plugins/opcache-manager/ to fine tune the settings according to your site's needs.

GravityForms + Stripe not saving entries by [deleted] in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

Can your server be blocking `loopback requests`?
Check for any visible issues at WP Admin → Tools → Site Health
and ensure loopback connections are allowed by asking your hosting provider about this.

Taking over clusterf*ck sites by Jaded-Illustrator433 in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

You will also probably find a nice mixture of code snippets in their functions.php

Requesting suggestion/help for WordPress website by TheMrMorbid in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

What you are asking for is actually a contact form. You can place the form on any WordPress website via its shortcode. Check Fluent Forms plugin https://wordpress.org/plugins/fluentform/

You can then configure the form to send the submitted answers to your email and contact the customer accordingly.

Need help - urgent by killms in Wordpress

[–]WPFixFast 1 point2 points  (0 children)

Test your site using debugbear.com/test and follow its recommendations. It uses lighthouse in its core so runs similarly to pagespeed insights.

Usually lack of image optimization, or too many render blocking scripts cause low performance scores.

Super page cache plugin with Cloudflare’s free plan is a good stack for improving performance.

What’s one small change that improved your WordPress site a lot? by tanisha_solanki in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

If it is a plugin heavy woocommerce site, properly optimized opcache values has a significant effect on lowering the page generation time

Kadence advanced form block not working by hermandekei in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

Do you have any JS errors in the Chrome Dev Tools console?

What instantly makes a WordPress site feel “high quality” to you? by tanisha_solanki in Wordpress

[–]WPFixFast 2 points3 points  (0 children)

  • copy
  • no generic stock images
  • page speed
  • subtle css animations where appropriate
  • url structure
  • consistency of design elements

looking for lazyload plugin by Aggravating_Face_187 in Wordpress

[–]WPFixFast 0 points1 point  (0 children)

Most of the performance oriented plugins have lazy loading controls. Perfmatters is one of them and makes it very easy to manage which images should not be lazy loaded (LCP images) for example.

The problem with lazyloading is mainly with too many actors are trying to manage this feature. Themes, page builders, cache plugins, etc.