Upgrade of Excel Importer compatible with WordPress 5.5

Categories: Uncategorized

Tags:

If you purchased product importer  , product importer and bulk edit , content importer , your support and downloads have expired and face any import problems after WordPress 5.5 upgrade of your website follow this guide:

 

  1. Go to Your website’s Plugin Editor
  2.  Select the Plugin
  3. Go to JS directory
  4. Locate wpeiePro.js or contentExceIimporterPro.js or  javascript_excel.js file ( according to the plugin you purchased there will be different naming)
  5. Find the function dragDrop()
  6. Replace With this:

function dragDrop(){
$('.draggable').draggable({cancel:false});
$( ".droppable" ).droppable({
drop: function( event, ui ) {
$( this ).addClass( "ui-state-highlight" ).val( $( ".ui-draggable-dragging" ).val() );
$( this ).attr('value',$( ".ui-draggable-dragging" ).attr('key')); //ADDITION VALUE INSTEAD OF KEY
$( this ).val($( ".ui-draggable-dragging" ).attr('key') ); //ADDITION VALUE INSTEAD OF KEY
$( this ).attr('placeholder',$( ".ui-draggable-dragging" ).attr('value'));
$( ".ui-draggable-dragging" ).css('visibility','hidden'); //ADDITION + LINE
$( this ).css('visibility','hidden'); //ADDITION + LINE
$( this ).parent().css('background','#90EE90');if($("input[name='ID']").hasClass('ui-state-highlight') ){
$(".hideOnUpdateById").hide();
}

}
});
}

«
»