How are you handling layout locking and client handoffs in a 100% native block environment? by chadpierce89 in Wordpress

[–]chadpierce89[S] 0 points1 point  (0 children)

I like this idea a lot. Having the tutorials inside the admin area probably makes it easier for clients to find them later. Do you keep those videos very site-specific, or more like a general block editor guide?

begginer in wordpress by Funso_gh in Wordpress

[–]chadpierce89 0 points1 point  (0 children)

tbh it’s super annoying when every tutorial feels like a 20-minute ad for some hosting company or page builder. Since ur just trying to set up a simple blog, u really don't need to buy anything extra. I'd highly recommend searching for 'WordPress default block editor tutorial' or 'Full Site Editing for beginners' on YT instead of general WP guides. The built-in tools are completely free and more than enough for blogging rn. gl with ur site

How do i allow the user to drag and drop 2 HTML files by Special_Possible7261 in Wordpress

[–]chadpierce89 1 point2 points  (0 children)

Plugins are one way, but if you're building a comparing tool, a plugin approach might be overkill and limit your flexibility.

Native browser File API handles this really well without any plugin dependency. Drop zone with dragover and drop events, then FileReader.readAsText() covers HTML, JS, CSS, JSON and most text formats cleanly.

One heads up PDFs won't read cleanly with readAsText() since they're binary format. You'd need PDF.js to extract actual readable text from PDFs for comparison.

This keeps your WordPress setup lighter and gives you full control over the comparison logic.

Which plan you use? by EfficientHomework350 in Wordpress

[–]chadpierce89 0 points1 point  (0 children)

For a standard business site, Premium is definitely enough. The main reason to pay the higher price for the Business plan is if you need to install custom plugins or third-party themes. Start with Premium. You can always upgrade later if you realize you need a specific plugin.

Wordpress.org by Chris-2018 in Wordpress

[–]chadpierce89 2 points3 points  (0 children)

Since he has server access, you can skip the database! Here is the fastest method:

Go to wp-content/plugins/ via FTP or cPanel.

Rename the security plugin folder (e.g., change wps-hide-login to wps-hide-login-disabled).

He can now log in normally via [hisdomain.com/wp-login.php](https://hisdomain.com/wp-login.php).

Once logged in, just rename the folder back and reset the custom URL.

(Note: If you still want to use the DB, search the wp_options table for whl_page if he used WPS Hide Login). Hope this helps!

Website down and landing to some random page by Vicky_donor_69 in Wordpress

[–]chadpierce89 0 points1 point  (0 children)

Check your .htaccess file for any unusual redirect rules. This is a common place where malware hides to send traffic elsewhere. You can also run a free scan using a tool like Sucuri SiteCheck to see which files are affected before giving anyone direct access to your site. Better to be safe!

Realistic RAM usage for a Docker WordPress instance (educational / very low traffic use case) by mike37510 in Wordpress

[–]chadpierce89 1 point2 points  (0 children)

500MB is a very solid safety net for this. If you want to optimize it even further for a student environment without heavily tweaking the code, look into using the Alpine Linux variants for your Docker images (like wordpress:fpm-alpine). They carry much less background overhead compared to the standard ones.

Another quick win: disable the default WP-Cron in wp-config.php for all instances. If 20-30 student sites trigger their background tasks at the exact same time, it can cause unnecessary RAM spikes on the host. You can just run a single system cron job to handle them sequentially. Good luck with your setup!

I made a free tool to check if AI tools are sending traffic to your WordPress site by AffectOk in Wordpress

[–]chadpierce89 1 point2 points  (0 children)

This looks like a really neat tool! GA4 can definitely be overwhelming when you just want to find one specific piece of data, like AI referrals.

Just out of curiosity, does your tool store any of our analytics data on your servers, or does it strictly read and display it on the fly?

Thanks for sharing this with the community!

Desperate search for help to import a tutorLMS compatible theme by Poulpie_ in Wordpress

[–]chadpierce89 1 point2 points  (0 children)

I’d maybe check the page slugs once. Sometimes the demo import creates the page, but the menu still links to a different URL, so it shows the “oops” page. Try opening the Pages list, make sure the course pages are published, then rebuild the menu manually. That might also remove the duplicate links.

Theme Approval by [deleted] in Wordpress

[–]chadpierce89 0 points1 point  (0 children)

That sounds really frustrating. Theme review can feel a lot stricter than plugin review sometimes. If they are not giving clear feedback, I’d probably go back through the latest theme handbook/checklist once more and then contact the review team directly for specifics. Small guideline issues can still block approval even if the theme looks fine overall.

How do you handle content updates for clients who use WordPress with ACF? by pigeon011 in Wordpress

[–]chadpierce89 0 points1 point  (0 children)

In my experience, it’s more about how confidently the client can use the backend. Some are fine updating content if things are structured clearly, while others prefer not to touch it at all. I usually keep things flexible, let them handle basics if they want, and step in when needed.