Code-Snippets-Functions/Execute a function on a child site/Paid Memberships Pro/load-css-for-checkout-page.txt

14 lines
375 B
Text

function my_load_css_for_level_checkout() {
global $pmpro_pages;
if ( is_page( $pmpro_pages['checkout'] ) && isset( $_REQUEST['level'] ) == '1' ) {
?>
<style type="text/css">
#other_discount_code_p {display: none;}
#other_discount_code_tr {display: table-row !important;}
</style>
<?php
}
}
add_action( 'wp_footer', 'my_load_css_for_level_checkout', 10 );