Banner Slider for Advertisement

Banner Slider for Advertisement

Wordpress plugin

Install on Wordpress

App Details

Banner advertisement to maximize your ad revenue by display image banners advertisement for different pages on different places.

There is not any direct WordPress action hook or filter function that allow you to insert new features like banner slider near header & footer or at any good place, so admin user/site manager should change and add plugin php code to allow site owner to display advertisement slider on front end site visitors.

**Important Note :: ** to display advertisement slider on user end, you have to edit header.php & footer.php files of current active theme. If you don’t have knowledge of PHP or WordPress code, we have display how to add with screen image from admin->Plugin Settings->Document.

Live Demo

You can find banner slider display on different pages plugin demo on our site

Different between Banner Slider and other slider plugins

  • Normal slider plugin display banners via widgets or shortcodes only for limited area.
  • While banner slider allow you to display banners for home page, category pages, tag pages & search page.
  • All pages have different places like display above & below header and above & below footer.
  • Main idea for this plugin to advertisement of banners on different places and on different pages.
  • Display banner slider as single banner or gallery slider to make page attractive.
  • So number of advertisement display possibility for your site will be more.
  • So it will chance to display more advertisement & increase advertisement revenue.
  • Like this you may earn extra money for your site.

Plugin Features

  • Screen touch slider.
  • Display 5 advertisement banners images per slider.
  • Display multiple banners(gallery) and/or single banner.
  • Display banner slider above & below header.
  • Display banner slider above & below footer.
  • Banner slider in header & footer for home page.
  • Banner slider in header & footer for post category pages.
  • Banner slider in header & footer for post tag pages.
  • Banner slider in header & footer for search page.
  • Banner slider widget to display at any widget area directly.
  • Banner images with click link URL add option.
  • Banner slider pagination & navigation (previous/next) banner option.
  • Banner slider auto play/auto slide option.
  • Banner slider infinite loop option.
  • Adjust banner slider adjust height as per banner images.
  • Fix the slider width & slide time settings option.
  • Banners for mobile show/hide.
  • Slider effects like default/slide effect and fade effect.
  • Responsive in size as per device screen size.
  • WordPress Multi-site ready.
  • Mobile friendly.

Live Demo

You can find banner slider display on different pages plugin demo on our site

How many places display advertisement banner slider

  1. Above Header
  2. Below Header
  3. Above Footer
  4. Below Footer

On which pages display advertisement banner slider

  1. Home page — above & below header and above & below footer
  2. Category pages — above & below header and above & below footer
  3. Tag pages — above & below header and above & below footer
  4. Search page — above & below header and above & below footer

How to Display Banners on front-end site

Why you should edit header.php & footer.php files??

> This is the only big question and the answer is :: every WordPress theme & child theme header.php & footer.php files have different HTML design and so we cannot say any one to add code exactly on particular line or near particular code.

Even not sure that the WordPress theme you are using have added action hook for header.php & footer.php file.

  • Step-by-step way to add banner slider code and update files.
  • Go to WordPress admin->Banner Slider(new menu added)->Plugin Settings->Document Settings.
  • See settings for display banner ABOVE and BELOW header.
  • Add the WordPress php hook code in “header.php” file.
  • Code for ABOVE header : do_action(‘wpw_banner_slider_before_header’);
  • Code for BELOW header : do_action(‘wpw_banner_slider_after_header’);
  • See settings for display banner ABOVE and BELOW footer.
  • Add the WordPress php hook code in “footer.php” file.
  • Code for ABOVE footer is : do_action(‘wpw_banner_slider_before_footer’);
  • Code for BELOW footer is : do_action(‘wpw_banner_slider_after_footer’);
  • Display banners advertisement slider in sidebar or any widget area by drag & drop widget : “Banner Slider Advertisement”

Docs & Support

You can find plugin documents, FAQ and more detailed information on wpwebs.com. If you were unable to find the answer to your question on the FAQ or in any of the documentation, you should check the support forum on WordPress.org. If you can’t locate any topics that pertain to your particular issue, post a new topic for it.
Still you need any help, customization or direct help – contact us

How to display banners on front-end site

There are two ways to display banner slider on front-end site
(1) Edit header.php & footer.php files by adding related action hook above & below header & footer
(2) Use widget “Banner Slider Advertisement” by drag-drop to widget area and display slider.

  • Go to WordPress admin->Banner Slider(new menu added)->Plugin Settings->Document Settings.
  • See settings for display banner ABOVE and BELOW header.
  • Add the WordPress php hook code in “header.php” file.
  • Code for ABOVE header : do_action(‘wpw_banner_slider_before_header’);
  • Code for BELOW header : do_action(‘wpw_banner_slider_after_header’);
  • See settings for display banner ABOVE and BELOW footer.
  • Add the WordPress php hook code in “footer.php” file.
  • Code for ABOVE footer is : do_action(‘wpw_banner_slider_before_footer’);
  • Code for BELOW footer is : do_action(‘wpw_banner_slider_after_footer’);
  • Display banners advertisement slider in sidebar or any widget area by drag & drop widget : “Banner Slider Advertisement”

Display banners by widget

  1. Display banner advertisement slider in widget ready sidebar.
  2. Use widget “Banner Slider Advertisement” by drag & drop widget from WordPress Admin->Appearance->Widgets->”Banner Slider Advertisement”.
  3. Select the banners slider created from WordPress Admin->Banner Slider
  4. Banner slider will display as per banner settings & there is no extra settings from widget.
  5. Just drag & drop the widget, select the banner and it done.

How to edit header.php file and add banner display code

  1. Go to WordPress Admin->Banner Slider(left menu)->Plugin Settings->Document(tab)-> See & copy code :: Display banner ABOVE and BELOW header
  2. Code for ABOVE header : <?php do_action('wpw_banner_slider_before_header');?>
  3. Code for BELOW header : <?php do_action('wpw_banner_slider_after_header');?>
  4. Go to WordPress Admin->Appearance(left menu)->Themes->Get Current Active Theme
  5. Go to WordPress Admin->Appearance(left menu)->Editor(only admin/super admin user can see this link)->Get current active theme selected->find “header.php”
  6. Click the header.php file so it come in editor so you can edit
  7. Find header start code. Most of case it should be like “< header ……” (see document tab image for more understanding)
  8. Add header banner code in header.php file before “< header ……” OR you may like to add the code at proper place like at below “body” tag of header.php.
  9. Find header end code. Most of case it should be like “< /header ……” (see document tab image for more understanding)
  10. Add header banner code in header.php file after “< /header ……” OR you may like to add the code at proper place like at ending of header.php.

How to edit footer.php file and add banner display code

  1. Go to WordPress Admin->Banner Slider(left menu)->Plugin Settings->Document(tab)-> See & copy code :: Display banner ABOVE and BELOW footer
  2. Code for ABOVE footer is : do_action(‘wpw_banner_slider_before_footer’);
  3. Code for BELOW footer is : do_action(‘wpw_banner_slider_after_footer’);
  4. Go to WordPress Admin->Appearance(left menu)->Themes->Get Current Active Theme
  5. Go to WordPress Admin->Appearance(left menu)->Editor(only admin/super admin user can see this link)->Get current active theme selected->find “footer.php”
  6. Click the footer.php file so it come in editor so you can edit
  7. Find footer start code. Most of case it should be like “< footer ……” (see document tab image for more understanding)
  8. Add footer banner code in footer.php file at before “< footer ……” OR you may like to add the code at proper place like at beginning of footer.php.
  9. Find footer end code. Most of case it should be like “< /footer ……” (see document tab image for more understanding)
  10. Add footer banner code in footer.php file at after “< /footer ……” OR you may like to add the code at proper place like at end of footer.php but above “body” end.

Pricing

Starting from $0 per month.

Check Out the Facebook Feed Widget

By Common Ninja

Facebook FeedTry For Free!

App Info

Rating

Reviewers

2 reviews

Tags

advertisement
banners
slider

Developed By

vipul Jariwala

Quick & Easy

Find the Best Wordpress plugins for you

Common Ninja has a large selection of powerful Wordpress plugins that are easy to use, fully customizable, mobile-friendly and rich with features — so be sure to check them out!

Testimonial

Testimonial plugins for Wordpress

Galleries

Galleries plugins for Wordpress

SEO

SEO plugins for Wordpress

Contact Form

Contact Form plugins for Wordpress

Forms

Forms plugins for Wordpress

Social Feeds

Social Feeds plugins for Wordpress

Social Sharing

Social Sharing plugins for Wordpress

Events Calendar

Events Calendar plugins for Wordpress

Sliders

Sliders plugins for Wordpress

Analytics

Analytics plugins for Wordpress

Reviews

Reviews plugins for Wordpress

Comments

Comments plugins for Wordpress

Portfolio

Portfolio plugins for Wordpress

Maps

Maps plugins for Wordpress

Security

Security plugins for Wordpress

Translation

Translation plugins for Wordpress

Ads

Ads plugins for Wordpress

Video Player

Video Player plugins for Wordpress

Music Player

Music Player plugins for Wordpress

Backup

Backup plugins for Wordpress

Privacy

Privacy plugins for Wordpress

Optimize

Optimize plugins for Wordpress

Chat

Chat plugins for Wordpress

Countdown

Countdown plugins for Wordpress

Email Marketing

Email Marketing plugins for Wordpress

Tabs

Tabs plugins for Wordpress

Membership

Membership plugins for Wordpress

popup

popup plugins for Wordpress

SiteMap

SiteMap plugins for Wordpress

Payment

Payment plugins for Wordpress

Coming Soon

Coming Soon plugins for Wordpress

Ecommerce

Ecommerce plugins for Wordpress

Customer Support

Customer Support plugins for Wordpress

Inventory

Inventory plugins for Wordpress

Video Player

Video Player plugins for Wordpress

Testimonials

Testimonials plugins for Wordpress

Tabs

Tabs plugins for Wordpress

Social Sharing

Social Sharing plugins for Wordpress

Social Feeds

Social Feeds plugins for Wordpress

Slider

Slider plugins for Wordpress

Reviews

Reviews plugins for Wordpress

Portfolio

Portfolio plugins for Wordpress

Membership

Membership plugins for Wordpress

Forms

Forms plugins for Wordpress

Events Calendar

Events Calendar plugins for Wordpress

Contact

Contact plugins for Wordpress

Comments

Comments plugins for Wordpress

Analytics

Analytics plugins for Wordpress

Common Ninja Apps

Some of the best Common Ninja plugins for Wordpress

Browse our extensive collection of compatible plugins, and easily embed them on any website, blog, online store, e-commerce platform, or site builder.

Facebook Feed for Wordpress logo

Facebook Feed

Show Facebook posts in a live Facebook feed that keeps content fresh, boosts social proof, and helps visitors engage more with your brand.

Stories for Wordpress logo

Stories

Add interactive stories to your site to showcase content in a visual, mobile friendly format that boosts engagement and guides visitors toward action.

Pricing Slider for Wordpress logo

Pricing Slider

Use a pricing slider to show dynamic prices by quantity, help visitors compare options, and support confident purchases.

Contact Form for Wordpress logo

Contact Form

Use a contact form so visitors can send messages, submit inquiries, and help you collect leads and improve user experience.

Video Poll for Wordpress logo

Video Poll

Create interactive video polls that use engaging clips to boost participation, gather insights, and help visitors vote in a more dynamic way.

Email Subscription Form for Wordpress logo

Email Subscription Form

Capture email leads with an email subscription form that collects addresses, saves entries, sends notifications, and helps grow your audience.

Spinning Wheel for Wordpress logo

Spinning Wheel

Add an interactive spinning wheel to offer prizes, capture leads, and drive user engagement through gamified rewards.

Image Stack Gallery for Wordpress logo

Image Stack Gallery

Showcase photos with an image stack gallery that layers images in a stacked display with smooth transitions to create a visually striking presentation.

YouTube Carousel for Wordpress logo

YouTube Carousel

Show YouTube videos with a YouTube carousel that displays clips in a smooth, customizable layout to boost visibility and keep visitors engaged.

Sitejabber Reviews for Wordpress logo

Sitejabber Reviews

Show Sitejabber reviews to build trust, strengthen credibility, and help visitors make confident purchase decisions that support higher sales.

Bluesky Feed for Wordpress logo

Bluesky Feed

Show Bluesky posts with a Bluesky feed that updates in real time, improves content discovery, and keeps visitors engaged with fresh activity.

Poll for Wordpress logo

Poll

Create interactive polls with a poll widget that gathers real time feedback, boosts engagement, and helps you understand visitor opinions quickly and clearly.

Discover Apps By Platform

Discover the best apps for your website

WordPress
Wix
Shopify
Weebly
Webflow
Joomla
PrestaShop
Shift4Shop
WebsiteX5
MODX
Opencart
NopCommerce

Common Ninja Search Engine

The Common Ninja Search Engine platform helps website builders find the best site widgets, apps, plugins, tools, add-ons, and extensions! Compatible with all major website building platforms - big or small - and updated regularly, our Search Engine tool provides you with the business tools your site needs!

Multiple platforms