Skip to Main Content

Author: gschoppe

The Gutenberg that could have been

I have been very vocal in the WordPress community about the fundamental issues I see with the new visual editor being bundled with version 5.0. One response I keep hearing is “how would you do it differently?” So, I thought I’d outline a hypothetical roadmap for the Gutenberg that might have been. read more »

Use Carbon Fields on Cloudways

I recently attempted to use Carbon Fields to generate custom metaboxes for a site hosted on Cloudways with PHP 7. I discovered, much to my dismay, that cloudways doesn’t support some of the multi-byte string functions in PHP (namely mb_strtolower) which is required for Carbon Fields.

For the benefit of those googling for answers, the site shows a blank white screen, and the error log contains PHP Fatal error: Uncaught Error: Call to undefined function Carbon_Fields\\Field\\mb_strtolower()

I’ve had no luck so far working with the CloudWays support team, but I will update this post if I hear back from their tier 3 technicians. I also reached out to HTMLburger, the makers of Carbon  Fields, to see if they can implement a workaround internally.

In the mean time, I was able to get the plugin running by importing the mb_string shim class from Patchwork Framework, by Nicolas Grekas. I’ve included a modified single file version of the shim with support checking added for each function, that you can import into your project to get Carbon Fields working, until Cloudways resolves the problem properly.

This is not a perfect replacement, as it is UTF-8 centric, so may behave unexpectedly with other character encodings, but it will at least get you up and running. Please, Cloudways, fix this.

read more »

Blog Redesign

I’ve been getting more readers recently, so i figured it was time to spruce the place up a bit a little.  For the last couple of years, I’ve been using a practically unmodified version of my own starter theme. It’s hard to find time to take care of your own site, but I replaced that starter over a year ago with something more modern, with Sass and logical template parts.

This new design is a blog-centric variant of my new starter, that takes a few cues from the typography of Medium (although not quite as polished).

It is mostly clean and lightweight, with a few visual flourishes. You also may see some of my photography grace the header from time to time.

You called it Gutenberg for a Reason.. That Doesn’t Make it Revolutionary. (An open response to Matt Mullenweg)

Matt Mullenweg, CEO of Automattic and founder/director of the WordPress Foundation, recently wrote a blog post entitled “We Called it Gutenberg for a Reason”, which attempted to address the widespread concerns voiced about the direction of the new WordPress editor. In general, the post made a lot of big promises about how Gutenberg would solve everyone’s problems. Unfortunately, many of those claims don’t live up to reasonable scrutiny. So, I find myself writing a response to the post, voicing some of the issues I find with what I see as an overly optimistic view. read more »

Introducing WP Utility Script Runner

At my day job, I often need to run a snippet of custom code once (and only once), and view or download the output. These snippets include things like:

  • Importing data from a spreadsheet
  • Generating a report about site usage
  • Invalidating passwords and notifying users
  • Deleting duplicates from a record set
  • Regenerating Thumbnails
  • many, many more…

WordPress doesn’t offer a good solution to this need, that addresses both the need for simplicity and security as well as providing a full-featured framework… So I built one.

WP Utility Script Runner