tom_taylor_85
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing Registration Settings?Thank You!
Forum: Fixing WordPress
In reply to: How to write a "Only on the first page" code???That makes sense! Thank you!
Forum: Fixing WordPress
In reply to: How to write a "Only on the first page" code???<?php if (is_front_page()): ?> ... <?php endif; ?>
I tried using the above to tell something to ONLY display when it is the first page. It didn’t work out.
Does it matter I am not using the default theme. Any help?
Forum: Fixing WordPress
In reply to: Media Library "Unatatched" ?Is it safe to delete them?
Forum: Fixing WordPress
In reply to: favicons and website taglineSo you got it to work perfectly??
Forum: Fixing WordPress
In reply to: cookies problem i thinkwould you mind sharing your site URL?
Forum: Fixing WordPress
In reply to: cookies problem i thinkI do not use this code, so I am a little confused. Can I ask this first…if you log in from the side bar, does it work?
If it does work, can you click a button ON THE SIDE BAR to log out?
Forum: Fixing WordPress
In reply to: cookies problem i thinkyou want the login/out to disapear after you are logged in?
Forum: Fixing WordPress
In reply to: Add Post Editor skip 2 lines !!?!?!?!?That is the same for all. If you don’t want this, write in the HTML part. It puts them all together.
Forum: Fixing WordPress
In reply to: favicons and website taglineEXAMPLE:
Google’s favicon is located at https://www.google.com/favicon.ico
The literal interpretation would be this:
<link href="https://www.google.com/favicon.ico" rel="icon" type="image/x-icon" />
If you add the above code in your header.php, bewtween the tags, your favicon will look like google’s.
Just replace the link with the EXACT location of your favicon image!
Forum: Fixing WordPress
In reply to: favicons and website taglinehref="<?php bloginfo('template_url'); ?>/favicon.png" /
Is assuming the favicon is saved as favicon.png. The
<?php bloginfo('template_url'); ?>
is attempting to find the EXACT path.You can make it like this:
<link rel="shortcut icon" type="image/png" href="YOUR_ENTIRE_LINK">
If your favicon is a .ico then use Abner’s code to look like this:
<link href="YOUR_ENTIRE_LINK" rel="icon" type="image/x-icon" />
Forum: Plugins
In reply to: Change menu based on Logged in or outIt is VERY simple, the code I use looks like this:
<?php if ( is_user_logged_in() ) : ?> <?php include(TEMPLATEPATH."/footer.php");?> <?php else: ?> <?php include(TEMPLATEPATH."/footer2.php");?> <?php endif; ?>
This code literally means: If you are logged in, display footer.php. If you aren’t, display footer2.php.
You are going to need to create an IF ELSE code to display the proper menu.
Forum: Fixing WordPress
In reply to: favicons and website taglineheader.php
just add that simple line of code between the <head> and </head> tags.
Mine looks like this, and it works as well:
<link rel="shortcut icon" type="image/png" href="<?php bloginfo('template_url'); ?>/favicon.png" />
Forum: Fixing WordPress
In reply to: Administration PanelI found it at https://www.tvbob.co.uk/blog/
So your link would be: https://www.tvbob.co.uk/blog/wp-admin
Forum: Fixing WordPress
In reply to: Administration PanelI found it at https://www.tvbob.co.uk/blog/
So your link would be: https://www.tvbob.co.uk/blog/wp-admin