• Hi,

    Is there a way to set the popup button to only be visible on the home page?

    Any help would be greatly appreciated.

    Kin regards,
    Matt Edwards

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author rajeshsingh520

    (@rajeshsingh520)

    Hi,

    Add the below code to your theme functions.php file this will only show the popup button on home page only

    add_filter('pisol_ppscw_enable_popup', function($ret){
    	if(!is_front_page(  )) return false;
    
    	return $ret;
    });
    Thread Starter Webzilla

    (@webz1lla)

    Hi @rajeshsingh520 thank you so much for getting back to me so quickly, that worked perfectly!

    I really appreciated your fast response and effeciency.

    Plugin Author rajeshsingh520

    (@rajeshsingh520)

    Your welcome

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Only have popup button on home page’ is closed to new replies.