Skip to content

Instantly share code, notes, and snippets.

View BrumGB's full-sized avatar
🎯

BrumGB

🎯
  • United Kingdom
View GitHub Profile
@BrumGB
BrumGB / nf.php
Created January 20, 2020 15:25
Remove Ninja Forms' 'Add Form' button from TinyMCE - WordPress
<?php
/**
* Remove Ninja Forms' 'Add Form' button from TinyMCE
*/
add_action( 'wp_loaded', function() {
if( ! class_exists( 'Ninja_Forms' ) ) {
return;
}
$inst = \Ninja_Forms::instance()->add_form_modal;
@BrumGB
BrumGB / qlikDate.js
Last active September 10, 2018 18:55
Format dd/mm/yyyy as qlikDate value, feel free to rewrite in native js 😊
// Requires plugin -> https://github.com/jsmreese/moment-duration-format
/**
* Format date string "dd/mm/yyyy" as QlikDate value
*/
function formatAsQlikDate(dateString) {
var startDate = moment('1899-12-30'); // excel start date
var selectedDate = moment(dateString);
// get time difference in seconds