Jump to content

Recommended Posts

Posted

for what I'm trying to do, my code should say: if user is a guest, they see the "log in" code, else if they're not a guest they see the advertisement banner at the top? I've attempted this myself, and it fails:

<div id="top_login">
				<div id="login_form">
<?php
if (!empty($context['user']['is_guest']))
{
					<script type="text/javascript" src="', $settings['forum/Themes/mytheme'], '/scripts/sha1.js"></script>
							<form action="forum/?action=login2" method="post" accept-charset="', $context['character_set'], '" ', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' . $context['session_id'] . '\');"' : '', '>
								<div id="login_username">
									<p class="form_label">Username</p>
									<input type="text" name="user" class="login_input" />
								</div>
								<div id="login_password">
									<p class="form_label">Password</p>
									<input type="password" name="passwrd" class="login_input" />
								</div>
								<div class="clr"></div>
									<input id="login_button" type="submit" value="" name="submit" />
								<div id="reminder">
									<a href="forum/?action=reminder">Forgot Password?</a>
									<a href="forum/?action=register">Register Now!</a>
								</div>
								<input type="hidden" name="hash_passwrd" value="" />
							</form>
							} else {
    ( wpthemes_options('ad468_location') != '') { 

					<a href="<?php echo wpthemes_options('ad468_url'); ?>"><img src="<?php echo wpthemes_options('ad468_location'); ?>" /></a>
}
?>
				        </div>
			        </div>
		      </div>
	    </div>

I'm not really good with php/html (at all), but I'm trying my best... :-\

--

--

If this helps this is what i want the guest to see: "login code"

<script type="text/javascript" src="', $settings['forum/Themes/greenzone99'], '/scripts/sha1.js"></script>
							<form action="forum/?action=login2" method="post" accept-charset="', $context['character_set'], '" ', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' . $context['session_id'] . '\');"' : '', '>
								<div id="login_username">
									<p class="form_label">Username</p>
									<input type="text" name="user" class="login_input" />
								</div>
								<div id="login_password">
									<p class="form_label">Password</p>
									<input type="password" name="passwrd" class="login_input" />
								</div>
								<div class="clr"></div>
									<input id="login_button" type="submit" value="" name="submit" />
								<div id="reminder">
									<a href="forum/?action=reminder">Forgot Password?</a>
									<a href="forum/?action=register">Register Now!</a>
								</div>
								<input type="hidden" name="hash_passwrd" value="" />
							</form>

This is what i want them to see after they're logged in:

<div class="ad-wrap">

				<?php if(wpthemes_options('ad468_googleads') != '') {

                 		echo wpthemes_options('ad468_googleads');

				} elseif ( wpthemes_options('ad468_location') != '') { ?>

					<a href="<?php echo wpthemes_options('ad468_url'); ?>"><img src="<?php echo wpthemes_options('ad468_location'); ?>" /></a>

             		<?php } ?>

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..