Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

hide adverts for subscribers

$
0
0

Replies: 0

Could you help me finish this php script to hide ads for subscribers?
I have targeted the ad above but I need to target the 2 ads at the end of posts.
Also I’m not sure for the action if I’m right. I found this script that is supposed to hide admin bar for non administrator. I got inspired.

Many thanks.

function habfna_hide_adverts()
{
?>
<style type=”text/css”>
.wpcnt .wpcnt-header {
display: none;
}
</style>
<?php
}
function habfna_disable_admin_bar()
{
if(!current_user_can(‘subscriber’))
{
// add_filter( ‘show_admin_bar’, ‘__return_false’ );
add_action( ‘admin_print_scripts-profile.php’, ‘habfna_hide_adverts’ );
}
}
add_action(‘init’, ‘habfna_disable_admin_bar’, 9);


Viewing all articles
Browse latest Browse all 59525

Trending Articles