Last active
November 7, 2022 16:38
-
-
Save ideadude/d25fb89822f60143926071feace36812 to your computer and use it in GitHub Desktop.
Example to add a modal checkout popup to every page with Paid Memberships Pro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Define the default level to use for the modal | |
*/ | |
define('PMPRO_MODAL_CHECKOUT_DEFAULT_LEVEL', 1); | |
/** | |
* Load the checkout preheader on every page | |
* We won't be processing on every page, but we | |
* want the code that sets up the level and | |
* preloads fields from user meta. | |
*/ | |
function pmprocm_preheader() { | |
//bail if PMPro is not loaded | |
if(!defined('PMPRO_DIR')) | |
return; | |
if(!is_admin()) { | |
if(empty($_REQUEST['level'])) | |
$_REQUEST['level'] = PMPRO_MODAL_CHECKOUT_DEFAULT_LEVEL; | |
require_once(PMPRO_DIR . '/preheaders/checkout.php'); | |
} | |
} | |
add_action('init', 'pmprocm_preheader'); | |
/** | |
* Add the checkout page modal to every page | |
*/ | |
function pmprocm_content() { | |
//if the 'shortcode' is already present, skip modal | |
$queried_object = get_queried_object(); | |
if(strpos($queried_object->post_content, '[pmpro_checkout') !== false) | |
return; | |
?> | |
<style> | |
div.pmprocm_modal_bg { | |
display: none; /* Hidden by default */ | |
position: fixed; /* Stay in place */ | |
z-index: 1; /* Sit on top */ | |
left: 0; | |
top: 0; | |
width: 100%; /* Full width */ | |
height: 100%; /* Full height */ | |
overflow: auto; /* Enable scroll if needed */ | |
background-color: rgb(0,0,0); /* Fallback color */ | |
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ | |
} | |
.pmprocm_modal_content { | |
background-color: #fefefe; | |
margin: 5% 25% auto; /* 15% from the top and centered */ | |
padding: 40px; | |
border: 1px solid #888; | |
width: 50%; /* Could be more or less, depending on screen size */ | |
} | |
.pmprocm_modal_close { | |
color: #aaa; | |
float: right; | |
font-size: 28px; | |
font-weight: bold; | |
margin: -35px -30px 0 0; | |
} | |
.pmprocm_modal_close:hover, | |
.pmprocm_modal_close:focus { | |
color: black; | |
text-decoration: none; | |
cursor: pointer; | |
} | |
</style> | |
<div class="pmprocm_modal_bg"> | |
<div class="pmprocm_modal_content"> | |
<span class="pmprocm_modal_close">×</span> | |
<?php | |
$template = pmpro_loadTemplate('checkout', 'local', 'pages'); | |
echo $template; | |
?> | |
</div> | |
</div> | |
<script> | |
jQuery(document).ready(function() { | |
// Make sure the form submits to the checkout page | |
jQuery('#pmpro_form').attr('action', '<?php echo pmpro_url("checkout", "?level=" . intval($_REQUEST['level']));?>'); | |
// Get the modal | |
var modal = jQuery('.pmprocm_modal_bg'); | |
// Get the button that opens the modal | |
var btn = jQuery('.pmprocm_modal_btn'); | |
// Get the <span> element that closes the modal | |
var span = jQuery('.pmprocm_modal_close'); | |
// When the user clicks on the button, open the modal | |
btn.click(function() { | |
modal.show(); | |
}); | |
// When the user clicks on <span> (x), close the modal | |
span.click(function() { | |
modal.hide(); | |
}); | |
// When the user clicks anywhere outside of the modal, close it | |
modal.on('click', function(e) { | |
if (e.target !== this) | |
return; | |
modal.hide(); | |
}); | |
}); | |
</script> | |
<?php | |
} | |
add_action('wp_footer', 'pmprocm_content'); |
HI,
Thanks for that how can i add model popup in all level
@ideadude I have modified this to check for the password reset page, as it breaks the submit button. Only added lines 17-19.
https://gist.github.com/kimwhite/51dda86355cc32c8254586e6ba1a8142
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ideadude, thanks for this gist. Is there a way to keep the membership confirmation page inside the modal too?