For most people, hardly a day goes by without some sort of web search or social media scroll. Websites and apps keep us organized, informed, productive, and entertained. This year, our team has compiled a list of our favorite and most used sites and apps of 2022. Our Favorite Websites growth.design/case-studies – A collection of…
Category: Web Development
Preventing Symfony Process From Passing Laravel Environment Variables
Recently when working on an internal tool using Laravel, we encountered an issue where calling artisan commands in another application was using the wrong environment variables. After debugging, we determined that this was default behavior of the Symfony process class. The Symfony process class for PHP is able to call system processes from within your…
Filtering Custom Post Types with Advanced Custom Fields and JavaScript
A common requirement in many WordPress sites that have large amounts of content is the ability to filter that content. Whether it be blog posts, products, or custom post types—filtering allows users to further specify what they want and receive the best information possible for their unique experience. While there are many great plugins out…
Optimize CSS with the :is() Pseudo-Class Selector
When styling aspects of your website, it’s not unusual to need to target numerous similar items at once. Your code can get lengthy, repetitive and complex. Fortunately, the :is() pseudo-class selector introduced in the Selectors Level 4 specification can help simplify it. Using the :is() Selector Example 1 A common scenario where you can use…