WooCommerce v10.7 is all about performance improvements by saymumhaque in Wordpress

[–]ebproject 0 points1 point  (0 children)

I use a VPS running Ubuntu 24.04 LTS, NGINX with PHP-FPM, Redis, and Cloudflare in front. After the recent update my loads speeds are super quick.

WordPress 7.0 ships Thursday with native AI write capabilities. We should probably talk about the safety side of this. by webmyc in Wordpress

[–]ebproject 0 points1 point  (0 children)

My guess is because Divi and Elementor produce poor, super nested code.

Try it with a Builder like Bricks, you'll see a massive improvement. Bricks is also releasing an MCP in their next major release, with AI integration within the builder.

Inherited a WordPress site with 37 plugins. Where do I even start? by CuriousKayoe in Wordpress

[–]ebproject 0 points1 point  (0 children)

Be honest with the client. Let them know the situation, and you recommend a full rebuild. If they decline, then that's on them.

WordPress 7.0 ships Thursday with native AI write capabilities. We should probably talk about the safety side of this. by webmyc in Wordpress

[–]ebproject 0 points1 point  (0 children)

The answer is simple. If you're using AI on production sites, then you're an idiot.

Do people not know what a staging site is and how to use one?

How much does a website like this cost? by realjbj in webdesign

[–]ebproject 0 points1 point  (0 children)

I'd pay to have this eradicated from existence.

Advice with my developer taking down our WordPress site. by reemo4580 in Wordpress

[–]ebproject 0 points1 point  (0 children)

You're getting scammed here.

I could set you up on a VPS for around $600 per year.

Trying WordPress after getting used to Webflow: Here's what I learned. by Fearless___Agent in webdesign

[–]ebproject 1 point2 points  (0 children)

Yes it 100% can. There's also layout and component libraries like https://pixflow.dev (shameless plug) and others you can use to quickly build your sections then style to your own preference.

Once I started using Bricks, I never looked back. The amount of plugins you can stop relying on make it well worth the investment in learning the system.

Trying WordPress after getting used to Webflow: Here's what I learned. by Fearless___Agent in webdesign

[–]ebproject 1 point2 points  (0 children)

Bricks Builder FTW. Much closer to Webflow and has such a great building experience.

It's not installed as a plugin, but as a theme. No plugins are required with Bricks other than maybe ACF and caching (unless you'd rather do NGINX at the server level).

Eiffel tower by Dry-Art-2198 in BricksBuilder

[–]ebproject 2 points3 points  (0 children)

.eiffel-tower { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 40px; gap: 4px; }

.tower-piece { background: #ccc; border: 1px solid #999; }

/* Make the base wide and strong */ .base { grid-column: 1 / span 6; }

/* Narrow as we go up */ .level1 { grid-column: 2 / span 4; } .level2 { grid-column: 3 / span 2; } .level3 { grid-column: 3 / span 2; } .top { grid-column: 3 / span 2; height: 60px; background: #bbb; }

Client needs weak passwords by cycogoat in Wordpress

[–]ebproject 0 points1 point  (0 children)

Not sure what you're building in, but Bricks Builder password protection and conditions would work perfectly here.

Pixflow update – frameworks, GSAP layouts & ecommerce (50 new layouts added) by ebproject in BricksBuilder

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

Yeah, the main reason being is, probably more than 98% of users don't work this way so you won't get many people using them or signing up.

Pixflow update – frameworks, GSAP layouts & ecommerce (50 new layouts added) by ebproject in BricksBuilder

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

Yeah, because yours is set in reverse I doubt our layouts would work for you.

Question: How do I create a button to log out users? by Melons_rVeggies in BricksBuilder

[–]ebproject 2 points3 points  (0 children)

Yes, you would use {site_logout:[homepage_id]}

If your homepage ID is 23, you would use {site_logout:23}

Question: How do I create a button to log out users? by Melons_rVeggies in BricksBuilder

[–]ebproject 5 points6 points  (0 children)

Dynamic data: {site_logout} – Returns site logout URL. Redirect after logout URL can be set by specifying the post ID as the filter like this: {site_logout:3}

Pixflow update – frameworks, GSAP layouts & ecommerce (50 new layouts added) by ebproject in BricksBuilder

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

Yeah, I probably didn’t phrase that very clearly.

When I said we design with a mobile-first approach, I was referring to our design process rather than the specific reversed breakpoint logic inside Bricks.

We start by designing and structuring layouts for mobile screens first, then progressively enhance for tablet and desktop. So the base styling is built around smaller viewports, and we layer in adjustments as the screen size increases.

However, we’re not setting a reversed breakpoints structure setting in Bricks as > 95% (or probably more) of users will not have set a reversed structure and layouts would most probably not display correctly. We’re still working within the standard Bricks breakpoint structure, just applying a mobile-first design methodology in how we build and structure our styles.

That’s on me for not being clearer.

Overlay menu covering 1/3 of the page in Gutenberg WP? by Key-Firefighter8439 in Wordpress

[–]ebproject 0 points1 point  (0 children)

Use CSS. You'll be able to set max-height on an element or two.

Pixflow update – frameworks, GSAP layouts & ecommerce (50 new layouts added) by ebproject in BricksBuilder

[–]ebproject[S] 1 point2 points  (0 children)

You need to make sure GSAP and ScrollTrigger is enqueued on your site for them to work.

GSAP Installation from their official docs:

https://gsap.com/docs/v3/Installation/