Password Protection issue
Password Protection issue
Password Protection issue
I’m not sure you actually used the html inside php like you have in the bottom of the question, but do try as below. <?php if( echo do_shortcode(‘[passster password=”123456″]’); ): ?> <!–<hide content>–> <ul class=”TPlayerNv”> <?php echo $optplayer; ?> </ul> <div class=”TPlayerCn BgA”> <div class=”EcBgA” style=”background-color:#EEEEEE!important;”> <div class=”TPlayer”> <?php echo $player; ?> <span class=”AAIco-lightbulb_outline lgtbx-lnk”></span> … Read more
Seems Frontend Reset Password does what you want. Among other features it also provides you a shortcode to be placed anywhere you want. Styling then is up to you and should be done from your custom (child) theme. From Reviews: If you are just looking for simlple forget password plugin without other fancy code, this … Read more
Password protecting the wp-content maybe not a good idea and may break your site interface. If you want the images are not displayed in google search Create a Robot.txt file in your root directory in hosting and add the code below. User-agent: * Disallow: /wp-admin/ Disallow: /wp-content/ or below if you want to not specific … Read more
Im really inexperienced with wordpress but i googled a few sec on google and maybe this will help. function is_user_logged_in() { $user = wp_get_current_user(); //Try to detect if the user is in a group here return $user->exists(); } Maybe you can try to do something with the page if the user is detected as user … Read more
Login issue in WordPress
I got same issue a few days ago. I figured out that the problem was in my theme. How did I knew that. I disabled all the plugins and tried again but the problem still there so I connected my hosting to help me and they just whitelisted my IP-addresse in Security Mode but the … Read more
wordpress Account Management generate password missing on my laptop
forgot password page with expiry link email of 60 minutes
in general we use WordPress filters to make changes for data. so in this code the filter password_reset_expiration allows us to make changes in it’s parameter DAY_IN_SECONDS which equals 86400 seconds. so we can change this value by adding a function that returns a new value to this filter: add_filter( ‘password_reset_expiration’, function( $expiration ) { … Read more