Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamsathyaseelan/cba7a3cb7f582441fe46516fc2502e94 to your computer and use it in GitHub Desktop.
Save iamsathyaseelan/cba7a3cb7f582441fe46516fc2502e94 to your computer and use it in GitHub Desktop.
Show the Retainful refferal window in particiular pages (Home and checkout pages)
<?php
add_action('wp_footer',function(){
$display = "none";
if(is_front_page() || is_checkout()){
$display = "block";
}
echo "<style>
.rtl-launcher{
display:{$display} !important;
}
</style>";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment