bujaman
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Ideal Interactive Map] Disable wheel scroll zoomThat is what I did, changed it to false and it worked for me. What is your web address? Make sure you refresh your browser, sometimes that works for me.
Forum: Plugins
In reply to: [Ideal Interactive Map] Disable wheel scroll zoomFigured it out.
Forum: Fixing WordPress
In reply to: Hide login form if logged inThanks! I really appreciate the reply. I played around with it late last night and got this to work:
<div id="header-signup"> <?php global $user_ID; if( $user_ID ) : ?> <div class="headerloginform_nli"> <?php wp_loginout();?> | <a href="#" onclick="window.open('https://www.blindbidpro.com/?s2member_profile=1', '_popup', 'width=600,height=400,left=100,screenX=100,top=100,screenY=100,location=0,menubar=0,toolbar=0,status=0,scrollbars=1,resizable=1'); return false;">Your Profile</a> </div> <?php else : ?> <div class="headerloginform"> <form name="loginform" id="loginform" action="https://www.blindbidpro.com/wp-login.php" method="post"> <div class="aligntop"> <input value="Username" class="input" type="text" size="20" tabindex="1" name="log" id="user_login" onfocus="if (this.value == 'Username') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Username';}" /> </br><input name="rememberme" id="rememberme" value="forever" tabindex="3" type="checkbox"> Remember Me </div> <div class="aligntop"> <input value="Password" class="input" type="password" size="20" tabindex="2" name="pwd" id="user_pass" onfocus="if (this.value == 'Password') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Password';}" /></br><a href="https://www.blindbidpro.com/wp-login.php?action=lostpassword" >Forgot your password?</a> </div> <div class="aligntop"> <input name="wp-submit" id="wp-submit" value="" tabindex="100" type="submit"> <input name="redirect_to" value="https://www.blindbidpro.com" type="hidden"> <input name="testcookie" value="1" type="hidden"> </div> <div class="aligntop"> <a href="https://www.blindbidpro.com/wp-login.php?action=register" class="link1"></a> </div> </form> </div> </div> <?php endif; ?>
Viewing 3 replies - 1 through 3 (of 3 total)