Reputation: 3
I am trying to integrate MailChimp WordPress popup on index page only.
I have edited footer.php
of the main theme but now the popup is showing on all the pages.
Is there any way that I can show a popup on a specific page?
For example, I only want to show subscription popup on http://WebSite.com/ page
Upvotes: 0
Views: 434
Reputation: 336
try with checking body for class home. If body have home class it is home page.
if ($('body').hasClass('home')) { // show pop up }
Upvotes: 2