CHECKING STATUS
I AM LISTENING TO
|

ARCHIVE.

Let’s Talk!

Looking for a reliable partner to bring your project to the next level? Whether it’s development, design, security, or ongoing support—I’d love to chat and see how I can help.

Get in touch,
and let’s create something amazing together!

Gutenberg Documentation While Gutenberg is becoming more stable with each release, documentation is only growing slowly. Many parts are outdated, superficial or completely undocumented. For more complex or individual requirements you have to dive deep. Gladly the browser console allows you to easily checkout what is driving the editor. Open your browser developer console and […]

What’s new / What changed ? Admin Enhancer is the first free plugin released under the cubicFUSION brand. The plugin is still work in progress, but a tool that is already used within some of my client projects. I am using this  plugin to centralise things I love & need, when sending out a finished website or […]

What is Bookstack BookStack is an open-source, web-based platform for organizing, storing, and sharing knowledge and documentation. It was developed to provide a user-friendly and intuitive interface for creating and managing knowledge bases, wikis, and other types of structured content. BookStack allows users to create books, chapters, and pages, and to organize them hierarchically. Users can […]

Elementor Pro provides grid containers as an experimental feature. The options provided are limited, when it comes to native controls. The fine-tuning of the grid container items need to be done using Advanced CSS. If you are looking for a simpler way without using Advanced CSS, I started building out a Grid Tweaker for Elementor. This will […]

What Google Drive Sharing offers us! I am doing a Podcast on portalZINE.TV since last year and always host a backup of the MP3 episodes on Google Drive. The link that you create, when enabling file sharing on Google Drive, can not be used to actually embed it on your website. The link looks something […]

Two tools that can enhance your workflow immensely. Enjoy!

PAPA PARSE Papa Parse is a powerful, in-browser CSV parser for the big boys and girls :)If you do need easy CSV parsing and conversion back to CSV, take a look at it! // Parse CSV string var data = Papa.parse(csv); // Convert back to CSV var csv = Papa.unparse(data); // Parse local CSV file […]

Updated 25.03. : Some function names changed in the latest beta version. IN BETA ACF 5.8 Beta introduced an easy way to create your custom Gutenberg blocks. I am already using it heavily for a current project, to easily organize content and media assets.  Really powerful, when combined with Timber as well, which has been the foundation of many […]

Simple little snippet, that can easily be used in conjunction with wp_update_user() /* Generate Unique User Nicename */ function generate_unique_user_nicename( $x ) { // set up args to query $args = array( ‘search’ => sanitize_title( $x ), ‘search_columns’ => array( ‘user_nicename’ ) ); // query for user $user_url_exists = new WP_User_Query( $args ); $results = $user_url_exists->get_results(); […]