undefinable1
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Duplicate Pages when postedNevermind. I fixed my problem. I realized that in the page.php file that
<div class="postContent"><?php the_content('[Read the rest of this entry...]'); ?></div>
was entered in the file twice. I deleted one, and it fixed my problem.
Forum: Everything else WordPress
In reply to: Duplicate Pages when postedbump
Forum: Everything else WordPress
In reply to: Duplicate Pages when postedbump
Forum: Fixing WordPress
In reply to: How to change banner?If you are using the Studiopress 1.2 theme by DailyBlogTips, I have posted a solution in this forum topic:
How to add custom header (StudioPress)
Hope this helps!
Forum: Themes and Templates
In reply to: How to add custom header (StudioPress)Hi! I had a hard time trying to figure this out as well! If you are using Studiopress 1.2 by DailyBlogTips, you can follow these instructions and hopefully get it working!
1. To remove your blog url from the header, in the style.css find lines 18-21:
h1, h2, h3, h4, h5, h6, p, blockquote { margin: 0; padding: 10px; }
and replace it with:
h1 { margin: 0; padding: 10px; display: none; } h2, h3, h4, h5, h6, p, blockquote { margin: 0; padding: 10px; }
2. To remove your blog description from showing in the header and to replace it with your custom header logo, in your header.php file find line 34:
<h2 class="sitedesc"><?php bloginfo('description'); ?></h2>
and replace it with:<a href="<?php echo get_option('home'); ?>"> <img src="<?php bloginfo('template_directory'); ?>/images/logo.gif" alt="YourSite.com"></img></a>
~Note~ This replacement will still cause your logo to be clickable and return the user to your homepage. If you wish for your header logo NOT to be clickable, simply replace it with:
<img src="<?php bloginfo('template_directory'); ?>/images/logo.gif" alt="YourSite.com"></img>
3. Make sure your the file you uploaded into your studiopress/images folder is named “logo.gif”. If not, change “logo.gif” in the replacement code to the file name you uploaded.
4. You can see how these changes look on my blog here: https://www.doubletakes.org
Take note, however, I had centered my header logo and removed the RSS Feed link that was originally on the right side as well.
Forum: Everything else WordPress
In reply to: Duplicate Pages when postedI’m having the same issue as well. The link you posted does not show any duplicate content to me though. Were you able to fix it? I’m still having problems with my blog. Here’s are my 3 page examples:
https://www.doubletakes.org/submissions/
https://www.doubletakes.org/contact-us/
https://www.doubletakes.org/site-policies/It only seems to do a duplicate of the text/html added into the content part of the pages. This happening on all pages except for the home page.
The only html coding I have in the pages look similar to this one on my “Contact Us” page:
<ul> <li>Questions?</li> <li>Comments?</li> <li>Suggestions?</li> <li>Anything you want to tell us that's NOT a Submission?</li> </ul> Contact us at <a href="mailto:[email protected]" target="_blank">[email protected]</a> <em><strong>OR</strong></em> send it through the form here: [contact-form 2 "Contact Us"]
Forum: Installing WordPress
In reply to: Page Names appearing in small casesjust for more information, the code
text-transform: lowercase;
can be found under the block
#nav li a{}
changing “lowercase” to “none” worked perfectly for me. Thanks for the tip!