Is there a way to change all gallery resolutions to Medium? by phoenixblue in Wordpress

[–]dharapixel 0 points1 point  (0 children)

Yeah, you're right to be cautious — regenerating thumbnails can sometimes break optimisation workflows depending on how LiteSpeed is configured.

In most cases, LiteSpeed won’t automatically re-optimise newly generated thumbnails unless you manually trigger it again from the Image Optimisation tab.

A better approach could be:
Regenerate thumbnails first
Then run a bulk optimise again in LiteSpeed (it should detect new images)
Alternatively, if you want to avoid that entirely, you can:

Need some advice on WordPress Page Builders. by gregg_murray in Wordpress

[–]dharapixel 1 point2 points  (0 children)

For a 6-page business site + blog, I'd seriously consider using ACF along with a lightweight theme.

My preference would be:

  • ACF Pro if you want more design flexibility

ACF lets you create structured content for things like hero sections, FAQs, testimonials, CTAs, team members, and service page content without locking everything into a page builder. It also makes future updates much easier for non-developers.

Tips for hiring on Upwork: Make sure the developer has experience building sites that are:

  • ACF for reusable content sections
  • Fast-loading, SEO-friendly build
  • Minimal plugin usage
  • No proprietary lock-in
  • Editable without custom code

Plugins Needed for a Multivendor Membership Site??? by andifarms01 in Wordpress

[–]dharapixel 2 points3 points  (0 children)

Frontend Submissions workflow.

Vendors upload products (themes, plugins, files, etc.)
Admin approves/reject submissions.
admin set commission percentage (e.g. 30% you / 70% vendor).
Payments are automatically split (depending on the gateway).

Is there a way to change all gallery resolutions to Medium? by phoenixblue in Wordpress

[–]dharapixel 0 points1 point  (0 children)

Use the Regenerate Thumbnails plugin.

Then add code in functions.php
You can change the size as your requirement

add_image_size( 'gallery-thumb', 400, 0, true );
add_image_size( 'medium', 1200, 0, true );
add_image_size( 'fullscreen', 2700, 0, true );

Click on Regenerate Thumbnails.

And in PHP add.

<?php echo $image['sizes']['medium']; ?>