I own this news website, http://techlions.in/ What I want to know, is there any plugin which stop advertisement when a user visits my website from a mobile device..???
you can try to detect if the user is using a mobile using this php code: http://mobiforge.com/design-development/lightweight-device-detection-php you just need to adapt it for your theme/plugin to display ads if the user is not on mobile or to hide such if you need any further help with this, let me know
The best way is to use CSS3 Media Queries. it will detect a mobile in very lighter way and you dont have to install or add some php codes.. Through CSS3 Media Queries, you can hide certain areas during mobile viewing
Support your theme by less framework. then you can use ad section "<div>" display:block/none. Example: Html code:<div class="advertisement">Your ad code here</div> CSS code: In desktop: .advertisement{display:block} In Mobile: .advertisement{display:none} I hope you understand