You are here: Home
Support site for Tips and Tricks HQ premium products
It is possible to send a notification e-mail to administrator when the user upload his profile?
Thanks.
I passed a specific text variable through the_content() modifying emember_access_checkers.php, so if the_content() value is “access_denied” the template automatically hides the post.
Here sample code:
<?php
ob_start();
the_content();
$content = ob_get_clean();
if($content == 'access_denied') {
} else { ?>
// show the post
<?php } ?>