#39055
 johnnathan
Participant

I found this see Annexes

I don’t know if that can maybe be the problem…

It says in small letters below:
http://blins.nl/wp-content/themes/kleo/lib/importer/import.js

This is the map file:

(function($){

“use strict”;

$(document).ready(function(){

// namespace
var importer = $(‘.kleo-import’);

// reset select
$(‘select.import’, importer).val(”);

// disable submit button
$(‘.button’, importer).attr(‘disabled’,’disabled’);

// select.import change
$(‘select.import’, importer).change(function(){

var val = $(this).val();

// submit button
if( val ){
$(‘.button’, importer).removeAttr(‘disabled’);
} else {
$(‘.button’, importer).attr(‘disabled’,’disabled’);
}

// attachments
if( val == ‘all’ || val == ‘all-agency’ ){
$(‘.row-attachments’, importer).show();
} else {
$(‘.row-attachments’, importer).hide();
}

// content
if( val == ‘content’ ){
$(‘.row-content’, importer).show();
} else {
$(‘.row-content’, importer).hide();
}

// homepage
if( val == ‘page’ ){
$(‘.row-homepage’, importer).show();
} else {
$(‘.row-homepage’, importer).hide();
}

});

});

})(jQuery);

Log in with your credentials

Forgot your details?