Designersblog.net Description: A great plugin from the developers of Designersblog.net that will give a popup to people who have the Adblock browser plugin installed. This plugin is still in beta and you will not be able to edit the alert text. This will be released in version 0.2 Copyright 2012 Designersblog.net (email : info@buitengewoonuniek.nl ) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ if (!class_exists("DesignersblogAdblockblocker")) { class DesignersblogAdblockblocker { function DesignersblogAdblockblocker() { // constructor } } } // End Class DesignersblogAdblockblocker if (class_exists("DesignersblogAdblockblocker")) { $dl_pluginSeries = new DesignersblogAdblockblocker(); } // Actions and Filters if (isset($dl_pluginSeries)) { //Start function AdblockBlockerHead() { include('scripts/loadhead.php'); wp_enqueue_script("jquery"); } function AdblockBlockerFooter() { include('scripts/loadfooter.php'); } add_action('wp_head','AdblockBlockerHead'); add_action('wp_footer','AdblockBlockerFooter'); } ?>