STATUS ÜBERPRÜFEN
I AM LISTENING TO
|

ARCHIV.

Plugins

Let’s Talk!

Suchen Sie einen zuverlässigen Partner, der Ihr Projekt auf die nächste Stufe bringt? Ob es um Entwicklung, Design, Sicherheit oder laufenden Support geht – ich würde mich gerne mit Ihnen unterhalten und sehen, wie ich Ihnen helfen kann.

Nehmen Sie Kontakt auf,
und lassen Sie uns gemeinsam etwas Erstaunliches schaffen!

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 […]

BOOKING SOLUTIONS 202x This is my take on a subset of booking, appointment, PMS or reservation solutions for WordPress. Update 02.04.2024Moving down the rabbit hole again :) Will be diving a bit deeper into some the solutions and their feature-sets. Might split this up into multiple posts :) Will see, which of the developers are interested […]

cubicFUSION cubicFUSION is my personal development playground. I always planned to make many of my projects public, but time is limited and running customer projects a priority. I am still doing a big cleanup of my toolset and will see what I can actually share or reuse. Some of these might be useful, inspiration or just an […]

„Gravity Forms for WordPress is a full featured contact form plugin that features a drag and drop interface, advanced notification routing, lead capture, conditional logic fields, multi-page forms, pricing calculations and the ability to create posts from external forms.“ There are multiple options how to handle the confirmation page. Gravity form allows you to send query […]

When performing tasks using the Gravity Forms API, handling notifications and hook execution on demand is something that becomes really handy. <?php trait GravityForm{ function GravityForm_send_notifications($form_id, $entry_id){ // Get the array info for our forms and entries // that we need to send notifications for $form = RGFormsModel::get_form_meta($form_id); $entry = RGFormsModel::get_lead($entry_id); // Loop through all the […]

Visual Composer shortcodes are normally not converted within the WordPress REST API rendered output. This can be accomplished by calling WPBMap::addAllMappedShortcodes(); add_action( ‚rest_api_init‘, function () { register_rest_field( ‚page‘, ‚content‘, array( ‚get_callback‘ => ‚convert_do_shortcodes‘, ‚update_callback‘ => null, ’schema‘ => null, ) ); }); function convert_do_shortcodes( $object, $field_name, $request ) { WPBMap::addAllMappedShortcodes(); // This does all the work global […]

CodePress Admin Columns allows you to manage and organize columns, for posts, users, comments and media lists in the WordPress admin panel. This little tweak allows you to add sorting to your columns. Add and adjust depending on the columns you have setup. Enjoy coding …

The Contact Form 7 for WordPress is a nice simple plugin to build contact forms fast. But when it comes to making it completely multilingual it lacks a bit. I am currently creating a website with 13 different languages, that would mean to create the same contact form 13 times, not really practical :) I am […]