mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
https://github.com/strangerstudios/pmpro-snippets-library/blob/dev/checkout/load-css-for-checkout-page.php
14 lines
375 B
Text
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 );
|