Skip to content

Instantly share code, notes, and snippets.

View Stoltze's full-sized avatar
🦀
Out fishing

Frederik Stoltze Stoltze

🦀
Out fishing
  • Accelerace
  • København K
View GitHub Profile
@Stoltze
Stoltze / functions.php
Last active March 17, 2017 12:49
Make "Gravity Form"-fields possible to make invisible + Danish way of ZIP
<?php
add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' );
add_filter( 'gform_address_display_format', 'address_format' );
function address_format( $format ) {
return 'zip_before_city';
}
@Stoltze
Stoltze / api.html
Last active January 31, 2017 07:32
CVR API integration i Gravity Forms (jQuery)
<script type="text/javascript">
function cvrapi(vat, country)
{
jQuery.ajax
({
type: "GET",
dataType: "jsonp",
url: "//cvrapi.dk/api?search=" + vat + "&country=" + country,
success: function (b)
{