• An other small fix.
    Don’t know if it happens in all browsers (mine’s FF 8) but in Admin > Options Torrent > Torrent Table,
    if one of the drag & drop column’s empty (it is the case when first installing) one cannot drop items into it because the binded div, being empty is not visible.
    I noticed it comes with a \n line break but it isn’t being rendered, so to have it work I made this little hack in wp-trader-admin.js

    var tableColumns = $( "[id^='sortable1_'], [id^='sortable2_']" );
    	tableColumns.each(function(){
    		if($(this).children().length==0){
    			$(this).html(" ");
    		}
    	});

    around line 28.
    p.s. sorry to post this much but really wanna have this plugin

    https://www.ads-software.com/extend/plugins/wp-trader/

  • The topic ‘[Plugin: WP-Trader] admin Torrent table empty columns’ is closed to new replies.