doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: site in Internet Explorer is weirdcokeefe,
I’ll take a stab at #4. Try the maintenance-mode plugin. http://wordpress.org/extend/plugins/maintenance-mode/
Forum: Fixing WordPress
In reply to: Custom content in templates headeridealists,
No problem, glad we could help.
Forum: Fixing WordPress
In reply to: Header image is obstructedjdanderson,
Take a look at this line:
<div class="description"><?php bloginfo('description'); ?>/div>You’re missing the “<” less than symbol on
</div>Forum: Fixing WordPress
In reply to: How to use a Fav Icon on WordPressitsalltech,
Ha, give this a try. The location of these images is not what we were expecting.
<link rel= "shortcut icon" href="http://i48.tinypic.com/favicon.ico">Forum: Fixing WordPress
In reply to: How to use a Fav Icon on WordPressitsalltech,
Where did you place the favicon? Meaning if you typed in a direct link to the image to view it what would that be? The link provided on the web site is not correct. I suggest not uploading it through the media uploader and instead simply place it in the root folder for quicker access. Drop the icon in the same place that you find the following folders and files:
wp-content
wp-includes
wp-app.php
wp-config.php
wp-adminThen link to it with the following link:
<link rel= “shortcut icon” href=”http://www.itsalltech.com/favicon.ico”> This is not a difficult process, it’s simply a matter of providing the correct link to the image itself.Forum: Fixing WordPress
In reply to: Header image is obstructedjdanderson,
My guess is that you are missing an ending </div> to remove the content, footer and sidebar from the header. Try adding one just before the <div id=”content”>
Forum: Fixing WordPress
In reply to: Taking off date and time on pages?threethings,
Remove the float: left from the following style.
#wrapper { background-color: #000000; color: #A6A6A6; /* float: left; Remove this style */ width: 950px; }style.css (line 92)
Forum: Fixing WordPress
In reply to: User Names ChangeYOUAREtehSCENE,
Try this, change the template tag from displaying the “nickname” to displaying the “username”. The username cannot be changed, but the nickname can so this is more than likely the solution. Take a look at this WordPress codex page: http://codex.wordpress.org/Template_Tags/the_author_meta. For example you might try:
<?php the_author_meta('user_login'); ?>Forum: Fixing WordPress
In reply to: Thumbnails on facebook not showingtbookman,
Can you post a link to your Facebook page so we can look at that as well?
Forum: Fixing WordPress
In reply to: Where is my home page?maybedog,
Must have blanked on this one, kmessinger has the right idea. Let us know if you’re still have trouble with this.
Forum: Fixing WordPress
In reply to: how to add plugin to wordpress directorysribharath,
You received an email from WordPress with your information, correct? Now you need the SVN program to upload your files. This is not to be confused with an FTP program. Download the trial version of “Versions” to get started, the program will walk you through the initial steps.
Forum: Fixing WordPress
In reply to: Moving cutom imagelanzko,
Add the following:
#header .wrapper { background-position: 10 10; }To your stysheet and play around with the numbers until you achieve the desired results.
Forum: Fixing WordPress
In reply to: Post links not working, still in categories, blogsandbender,
Sorry, I mean the code within the template not what appears through the page source.
Forum: Fixing WordPress
In reply to: How to ad Adsenseoriolesprospects,
Are you familiar with plugins? If not please take a look at the “Extend” portion of WordPress, at the top of this page in the navigation and download a few to try. All plugins come with installation instructions to get you started.
Forum: Fixing WordPress
In reply to: Custom content in templates headeridealists,
Of course this is possible, here is a sample of something you might try. I haven’t fully tried this but it should work. Below we are showing page 7 ( assume this is the About page’s ) title.
<?php if (is_home()) { ?> <?php $my_query = new WP_Query('page_id=7'); while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?> <h2 class="style-name"><?php the_title(); ?></h2> <?php endwhile; ?> </div> <?php } else { ?> <div class="style-name">Do Nothing</div> <?php } ?>