I hereby introduce KanBanana, a WordPress Theme using the HTML5 Drag and Drop API.
The theme offers unlimited columns, is fluidly scaling upto 5k screens and supports mobile devices.
Tag Archives: WordPress
Announcing ResumePress
I hereby announce ResumePress, a Resume building tool for WordPress.
Translating Pods Framework into Dutch
Last monday I`ve started the Dutch / Nederlands (ISO: nl-NL) translation of the Pods Framework for WordPress. You can find the official translation at translate.wordpress.org/projects/wp-plugins/pods/stable/nl/default
Initially there was 0-5% translated and after a good day of work Ive managed to get it to 25%. I aim to have it translated to 75% before 1 January 2016.
For those who also would like to participate in the translation sprint, go ahead! There are tens of languages available and almost all could use some help!
My WordPress plugins and PHP 7.0
My WordPress plugins are tested and compatible with PHP 7.0
If you do find any bug, please let me know using the contact form.
Quick fix for WordPress SSL Verify error
When your WordPress installation has problems with updating and retrieving files over SSL, because of outdated certificates, you can bypass this.
It`s actually a workaround, not a fix!
Just place the following code in your theme or plugin
// SSL fix
add_filter( 'https_ssl_verify', '__return_false' );
add_filter( 'https_local_ssl_verify', '__return_false' );