Common Block Editor Questions from Clients Featured Image WordPressCommon Block Editor Questions from ClientsHere’s a collection of common block editor-related questions that I’ve received from clients while conducting WordPress training. I can’t see the editor sidebar! You have the editor sidebar hidden, you can click on the settings button to show/hide the sidebar. The settings button can be found next to the blue Publish/Update button. Where are the […]
Tips for upgrading ACF Blocks to block.json Featured Image WordPressTips for upgrading ACF Blocks to block.jsonSince the introduction of Advanced Custom Fields (ACF) 6.0, you should be registering blocks using the newer block.json method instead of using the legacy acf_register_block_type() function. It’s not required to convert your legacy ACF blocks to block.json. Using block.json can come with benefits such as performance improvements and the ability to take advantage of newer […]
Output Original Image Size in WordPress Featured Image Code SnippetsOutput Original Image Size in WordPressHere’s how you can output the original image size using the wp_get_attachment_image() function: The key is to use original_image as the size attribute. This will output the original image with no scaling applied. This should be used sparingly because original images are usually a large file size. Alternatively using full as the size attribute will […]
Allow access to the WordPress REST API on GoDaddy Featured Image WordPressAllow access to the WordPress REST API on GoDaddyI was recently working on a WordPress site hosted on GoDaddy. The problem that I was encountering was a persistent “Welcome to the block editor” modal every time I loaded the Block Editor. Investigation Fix Allowing my IP addressed fixed my issue temporarily but this was not a permanent solution as I have a dynamic […]
Smooth Image Zoom on Hover with CSS Featured Image Code SnippetsSmooth Image Zoom on Hover with CSSThis simple CSS hover effect will subtly & smoothly scale an image 20% larger on hover. HTML CSS
bbPress tips & tricks Featured Image WordPressbbPress tips & tricksI recently had to use the bbPress plugin on one of my WordPress projects. Here are some helpful tips and tricks I wish I knew before using this WordPress plugin. You need to enable registration If you are allowing public user registration you need to enable the “Anyone can register” setting under General > Membership […]
Full Width Container with CSS Featured Image Code SnippetsFull Width Container with CSSHere’s how you make a full-browser-width container when we’re inside a max-width/limited wrapper. HTML Full width parent container In this example my parent container is set at a max-width of 100% with a nested content wrapper. Constrained parent container In this example my parent container (.site-main) is set at a max-width of 1800px with a […]
LG 32″ 4K UHD Monitor Review Featured Image TechnologyLG 32″ 4K UHD Monitor ReviewI’m coming up on 8 months of using this monitor and I think it’s time for a review of the LG 32-inch 4K Monitor (32UK550-B). I’ve been using this as my display every day for programming and gaming on the weekends. Below are my impressions of using this monitor and why you should buy it. […]
Responsive Google Slides & YouTube Embeds with CSS Featured Image Code SnippetsResponsive Google Slides & YouTube Embeds with CSSHere’s a simple way using only CSS to make your Google Slides & YouTube/Vimeo embeds look great on your website. The Solution Add the following CSS to your website. These CSS selectors will target any iFrame’s with the domains of docs.google.com, youtube.com, and player.vimeo.com and make them responsive with the aspect ratio of 16 / […]