Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* For Ads Premium Users */
- function remove_ads_for_premium_users () {
- if ( get_user_option( 'jpw_subscribe_status', get_current_user_id() ) === 'ACTIVE' ) {
- add_action( 'wp_head', function () {
- ?>
- <script>
- jQuery( window ).ready(() => {
- jQuery( '.jeg_ad ' ).remove()
- })
- </script>
- <?php
- }, 99);
- }
- }
- add_action( 'init', 'remove_ads_for_premium_users' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement