Well in archive you have modified version of module with default evb made by original author. My evb is branded and designed for my site. Ok I'll create something similar and pack it so you all can easily modify it and use it on your own site.


Look back a few posts in this same thread.
There's a little bug in EVB. It publishes articles older than you have set in admin panel..
I'm not a programmer but I added this line to the update SQL query "AND link_date >= SUBDATE( NOW(), 4)".. it looks it helps..
pliggit.php
changed tolink_status='published', link_published_date = now() WHERE link_id=\"$link_id\"");
It should NOT publish articles older than 4 days..link_status='published', link_published_date = now() WHERE link_id=\"$link_id\" AND link_date >= SUBDATE( NOW(), 4)");