doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Big space under footerneaj,
Is this site using a websnapr plugin of some sort? It appears the code for this is causing the problem see:
<div id="tooltip0" class="tooltip"> <p><img src="http://images.websnapr.com/?size=s&url=http://www.hayda.net"/></p> </div> <div id="tooltip1" class="tooltip"> <p><img src="http://images.websnapr.com/?size=s&url=http://www.cosmeticdentistwashingtondc.com/dental-hygiene/"/></p> </div>The code above is printing out at the bottom of your pages.
Forum: Fixing WordPress
In reply to: how to remove the navigation bar on a theme?jbee,
This should be deleted from the file header.php:
<div id="nav_menu"> <!--Main navigation menu--> <ul> <li><a <?php if(is_front_page()) echo 'class="current" '; ?>href="<?php bloginfo('url'); ?>" title="Home">Home</a></li> <li><a <?php if(is_home()) echo 'class="current" '; ?>href="<?php bloginfo('url'); ?>/blog/" title="Blog">Blog</a></li> <li><a <?php if(is_page('about')) echo 'class="current" '; ?>href="<?php bloginfo('url'); ?>/?page_id=2" title="About <?php bloginfo('name'); ?>">About</a></li> <li><a <?php if(is_archive() || is_page('archives')) echo 'class="current" '; ?>href="<?php bloginfo('url'); ?>/archives/" title="Visit the archives">Archives</a></li> <li><a href="<?php bloginfo('url'); ?>/feed/" title="RSS Feed">Feed</a></li> <!--<li><a href="<?php bloginfo('url'); ?>/sitemap/" title="Sitemap">Sitemap</a></li>--> </ul> </div><!--close nav_menu id-->Be sure you are not looking in the header_plain.php.
Forum: Fixing WordPress
In reply to: image display issuegodt,
Is your issue related to this post: http://wordpress.org/support/topic/307944?replies=1
This is the first I’ve heard of this problem, but I will be looking into it further.
Forum: Fixing WordPress
In reply to: I deleted 1 script and my whole site is messed up.daboothnj,
Sure thing, please post the code of your header.php file or at least the area that seems to be affected. More than likely it’s a small error.
Forum: Fixing WordPress
In reply to: Theme wiped out, all info gone – please help!orbital2000,
When updating WordPress did you copy over the wp-content folder? Doing this would certainly erase all of your coding alterations. If something was messed up within the config file it would be best to download and replace this one file only.
Forum: Fixing WordPress
In reply to: My Plug Ins are at the bottom of the pageRonLambright,
What plugins are you using and can you include a link to your site so we can take a look? Thanks
Forum: Themes and Templates
In reply to: Help! One color on my theme is not showing up anymore!thepranamama,
pure-essence.net is a different theme at this time. Do you still need assistance?
Forum: Fixing WordPress
In reply to: WP_Query exclude a specific category from posts with subcategorieshoodibaba,
Just checking here and using the example provided, if the post is included within category 3 and category 1 you may need to move to an array to make the exclusion.
Forum: Fixing WordPress
In reply to: iNove 1.4.6 – blog name in the middle of the header?ThorstenD,
Hopefully you have this under control. Here is a quick guide. After locating the style you want to change it’s really as simple as adding or adjusting the following to suit your needs:
.myStyle { font: bold italic 24px Helvetica, Arial, sans-serif; }Forum: Fixing WordPress
In reply to: Google Webmaster ToolDbo,
From the code you posted the ending head tag “</head>” appears just before the “<body>” tag here:
<?php wp_head(); ?> </head> <body>This is correct. What I’m not seeing is a beginning head tag “<head>” so try replacing the beginning of the code with this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- Start the Head Tag Here--> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="; charset=" /> <!-- Google Verify --> <meta name="verify-v1" content="(number goes here)" />Then the rest of the code follows.
Forum: Fixing WordPress
In reply to: excerptmrdanzhang,
I haven’t thoroughly looked into this but the alternative is to use the limit-post plugin. You can download it here: http://www.doc4design.com/plugins/limit-post/. This will give you more control over the length of the excerpt and this version also provides the additional option of printing the excerpt without markup.
Forum: Fixing WordPress
In reply to: How do you not show date of post?pathtales,
Are you using a theme we can take a look at? If so let us know what it is so we can be more specific. Typically though, the date and time are shown using the following:
<?php the_time('l, F jS, Y') ?>Your code may look a little different but you will want to remove this line wherever you do not want the date and time displayed.
Forum: Fixing WordPress
In reply to: How do I get WP to stop molesting my HTML?sorry_i_ever_started_using_wp,
Does the scrolling issue only happen periodically, as though the post is saving with WordPress’ auto save feature. I experience trouble with this as well. I haven’t looked into this but there should be a way to turn that off which I believe will solve your problem.
Forum: Fixing WordPress
In reply to: Two-line category namesnaty3yl,
Let us know why you are doing this, there may be an alternative solution.
Forum: Fixing WordPress
In reply to: attempted tweak gone wrongdobro,
I don’t see a footer in the code and I’m curious if you deleted more than you intended to. This is uncommon, if this is a theme you might try downloading it again and adding in the missing portion.