โŒ

Normal view

Plugin Authors Who Take Away Formerly Free Features

28 August 2026 at 23:13

We need a system of shame for plugin developers who take features that were free and lock them away in the paid version. How you gonna "update" your plugin by making it worse? How desperate does that make you look that you can't innovate something that adds value so you feel you have no choice but to do a takebackskies. ๐Ÿคฎ

submitted by /u/thethinker213
[link] [comments]

[PROMO] Resize images, the original remains untouched

28 August 2026 at 15:46

Hey guys,

we are two devs who built a free & open source image optimization plugin (GPLv2): neoOptimize

Most image resizing plugins downsize your original image files to some fixed size and you lose the original data forever. We wanted to keep the originals (similar to non-destructive editing).

So we built a small free/open-source plugin that tries to solve this by leaving your images as-is and copying a resized version into the cache folder. The image size is determined by the exact size the image is used on your site.

submitted by /u/pal__sch
[link] [comments]

[PROMO] Internal Messaging in WordPress for Free: A Practical Guide

28 August 2026 at 15:08

Need a simple way to communicate with WordPress editors? Attenta Admi Messages gives your team a dedicated place for internal messages inside the WordPress administration area. Start with the free version and expand your workflow when you need more advanced features.

๐Ÿ‘‰ Install Attenta Admi Messages: https://wordpress.org/plugins/attenta-admi-messages/

submitted by /u/No_Challenge8181
[link] [comments]

Website loading home.html instead of my wordpress blog homepage. Help please!

28 August 2026 at 10:52

updated PHP and WordPress versions yesterday, and now when I go to my website it's going to a standard WordPress holding page instead of my blog page. The settings in reading are all correct.

when I go to edit the page directly in WordPress it also lists the correct URL. for some reason WordPress is deciding to send users to this home.html file instead of my page and I can't get my head around why.

submitted by /u/oswaldbuzzington
[link] [comments]

Thoughts on the solace theme

28 August 2026 at 08:14

I watched a video on youtube by darrel wilson about integrating claude and wordpress to design websites (using elementor as the page builder which is the builder I am familiar with ), and he suggested his own theme (solace) in this workflow, I usually work with astra or blocksy and I am not really familiar with his theme, did any of you guys use it before and have live websites using this theme ?

submitted by /u/Ok_Version5665
[link] [comments]

Any modern alternative to TGM Plugin Activation?

27 August 2026 at 17:58

I'm using this library so that users of my plugin can install extensions that are hosted in the plugins repo with a couple clicks. However, it is unreliable: it works in 99% of the cases but it does not work on some environments. In some i get the error: "The plugin does not have a valid header" and I just cannot debug this.

Is there a modern successor to the TGM Plugin Activation library?

submitted by /u/rafark
[link] [comments]

[PROMO] RSVPMaker events and email marketing plugin, tutorial video and zoom tutorial sessions

27 August 2026 at 15:44

RSVPMaker is a free and flexible events and email marketing plugin. Use it to post events on your website, independent of any external service, promote them to your email list, sign people up and collect money.

I use RSVPMaker for my own projects but would like to see more website owners and consultants take advantage of it. I'm hosting a a couple of online training sessions and am also sharing a video demo below.

Short tutorial https://youtu.be/NWHtaODbbP0

submitted by /u/Nice-Language418
[link] [comments]

fast removal of malware-infected site

27 August 2026 at 14:04

Hi,

I found out my webhosting space is flooded with malware. I removed it from one site but after an hour it was back, probably from one of the other sites. I remove the files with my FTP-client WinSCP but it is sooooo slooooowwww.... I am working on it all day already.

Is there a way to do this faster? I mean, should I be able to login to the server directly, I could do a del *.* or not?

EDIT: support from my webhost has wiped the entire hosting package. I restored the site and updated WP + all plugns and installed iThemes for security. Now fingers crossed!!

submitted by /u/Kalebas030
[link] [comments]

Need some guidence from web dev as freelancer

27 August 2026 at 13:41

Hi, 19F here.

So the thing is I am a CS major and for some time, I have been practicing and making websites on wordpress with different builders ( Elementor etc ) for a friend of my brother. He is basically guiding me through the process. And he makes decent money.

Recently, I needed some money for some reasons so I am thinking, why not make a gig on Fiverr and Upwork?

I can't do anything toooo fancy like some custom retro website or some very fancy animation, but some basic to almost mid website I can make.

Do any of you guys have some suggestions on how to start freelancing.

Thanks.

P.S. I also know HTML and CSS and some basic troubleshooting will learn JS and some frameworks as time passes to, so I can properly be a web designer.

submitted by /u/MathematicianSad4964
[link] [comments]

BOT Protection

27 August 2026 at 13:08

I have a bunch of sites inundated by bots. I'll have a site in the US that all of a sudden uses all my server memory at a time where 99% of the country is asleep. I've used some of the security plug-ins, but have not found them to be very helpful in terms of blocking all these malicious bots. Has anybody else found something that will actually block all these attacks??

submitted by /u/roosites
[link] [comments]

WP_Query has_post_thumbnail() returning false for all posts in custom loop, even when Featured Image is set.

27 August 2026 at 10:44

Hi everyone, Iโ€™m running into a baffling issue while building a custom post ticker shortcode.

My WP_Query successfully fetches the latest posts and grabs their titles and permalinks perfectly. However, has_post_thumbnail() is returning false for every single post in the loop, forcing my code to output my text fallback instead of the images.

I know for a fact that all the post have feature images

Here is my code (running via Code Snippets plugin):

add_action( 'after_setup_theme', function() {

add_theme_support( 'post-thumbnails' );

add_image_size( 'blog-card', 600, 400, true );

} );

add_shortcode('custom_post_ticker', 'build_smooth_ticker'); 1

function build_smooth_ticker() {

$query = new WP_Query(array(

'post_type' => 'post',

'posts_per_page' => 10,

'post_status' => 'publish'

));

if (!$query->have_posts()) return '';

$items = '';

while ($query->have_posts()) {

$query->the_post();

$current_id = get_the_ID();

// TEMPORARY DEBUG LINE

$items .= '<!-- ID: ' . $current_id . ' | Has thumb: ' . (has_post_thumbnail($current_id) ? 'YES' : 'NO') . ' -->';

if (has_post_thumbnail($current_id)) { $content = get_the_post_thumbnail($current_id, 'blog-card'); } else {

// This fallback always triggers

$content = '<div style="color: white; font-weight: bold; padding: 0 20px; line-height: 180px;">' . get_the_title() . '</div>'; }

$items .= '<div class="ticker-item"><a href="' . get\_permalink() . '">' . $content . '</a></div>';

}

wp_reset_postdata();

return '<div class="ticker-wrap"><div class="ticker-track">' . $items . $items . '</div></div>'; }

submitted by /u/xxTheMasterxx5
[link] [comments]

Sharing a wordpress site

27 August 2026 at 10:16

hey there I'm not really sure how to go about this, I'm reaching out for a friend he is running a website for a hobby he likes to post his art he makes and other various topics in a community based forum kidna thing he has setup, I'm wondering if i could get some advice to help him get it out there more, he currently posts to his youtube which gets a bit of traction that satifies him, one big problem i noticed is he just gets a bunch of fake accounts signing up they dont last long because of their malicous attempts being blocked is there a way to weed the fake accounts out that are signed up also? would love any advice like i said before its just a hobby he enjoys doing it for fun keeps him happy dont really know where else i can reach out.

submitted by /u/Remote-Emphasis-2126
[link] [comments]

Blank Space After Last Block, Above Footer

27 August 2026 at 09:46

Hello,

I'm struggling to remove a blank space after the last block on the home page of this site. I have tried to adjust the padding in the site editor and on the block itself. Both are set to zero. I looked for hidden paragraphs and could not find any. This is a Wordpress site hosted through BlueHost.

Any help would be greatly appreciated!!!!

submitted by /u/leenarhodes
[link] [comments]

WordPress site suddenly displays a full-screen iframe pointing to cloudflare-check.net : is this actually related to Cloudflare?

27 August 2026 at 09:29

Hi everyone,

I'm trying to understand a strange issue affecting a client's WordPress website:

https://sarltib.fr/

This client is currently in a dispute with their former web agency. I'm supposed to take over the website, but I don't have access to the hosting, WordPress admin, FTP or database yet.

While we're waiting to recover everything from the former provider, this new issue suddenly appeared on the website.

When accessing the site, I get the following error:

โ€œServer IP address could not be found for cloudflare-check.netโ€

The strange part is that the actual WordPress website is still there and seems to load normally in the background.

In Chrome, when I inspect the page, I can see a full-screen iframe with the title โ€œSecurity checkโ€ displayed on top of the website. If I manually delete this iframe from the DOM using Chrome DevTools, the normal website immediately appears behind it.

In Firefox, I only see the cloudflare-check.net error page.

The WordPress login page at /wp-admin is also still accessible.

Since I don't have access to the website yet, I'm mainly trying to identify what we're dealing with so I can advise the client while the current provider still has control of the hosting.

Has anyone seen this kind of behavior before?

In particular:

  • Could this simply be a DNS configuration issue?
  • Does this look like a compromised WordPress installation / malicious iframe injection?
  • Is cloudflare-check.net actually related to the legitimate Cloudflare service, or is the name just being used to make the page look legitimate?

Thanks for any help or feedback!

submitted by /u/Global-Box-3681
[link] [comments]

[PROMO] halloween.js โ€” free, open-source script for adding Halloween effects to any WordPress site

27 August 2026 at 06:53

Sharing a free, open-source project that works well with WordPress

halloween.js is a zero-dependency library that adds Halloween-themed ambient effects to a page (blinking eyes, flying witches, a dropping spider, a rising tombstone, corner spider webs).

No plugin needed, just one script tag pasted into the Theme Editor's header.php (or any "Insert Headers and Footers" type plugin if you'd rather not touch theme files directly), plus one CSS class on <body> to turn it on. Styles are injected automatically, no separate CSS file, no build step.

Under 10 KB gzipped, MIT licensed, source on GitHub.

Live demo + WP instructions: https://halloween.js.org/
GitHub: https://github.com/rogulia/halloween.js

submitted by /u/Total-Reasonable
[link] [comments]
โŒ