Shitty_coder
Shitty_coder

Reputation: 3

How to show popup on index page only Wordpress

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

Answers (1)

Meet Makadia
Meet Makadia

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

Related Questions