Infoprincess
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Older Posts, Newer PostsI’ve done as instructed and the problem still exists. Here is the loop file code for the “newer posts”/”older posts”
<?php
if ( is_home() || is_archive()) {
query_posts($query_string . ‘&cat=3&posts_per_page=5’ );
}
?><?php /* Display navigation to next/previous pages when applicable */ ?>
<?php if ( $wp_query->max_num_pages > 5 ) : ?>
<div id=”nav-above” class=”navigation”>
<div class=”nav-previous”><?php next_posts_link( __( ‘<span class=”meta-nav”>←</span> Older posts’, ‘twentyten’ ) ); ?></div>
<div class=”nav-next”><?php previous_posts_link( __( ‘Newer posts <span class=”meta-nav”>→</span>’, ‘twentyten’ ) ); ?></div>
</div><!– #nav-above –>
<?php endif; ?>Any more suggestions? This is frustrating …. thanks in advance
Forum: Fixing WordPress
In reply to: Older Posts, Newer PostsPart of the Problem was solved.
At the beginning of the loop.php file in my child theme, I found the following:
<?php
if ( is_home() || is_archive()) {
query_posts($query_string . ‘&cat=-17&posts_per_page=5’ );
}
?>Before I changed it, the posts_per_page wast set to =3 which explains why I was only getting the last 3 posts. I hope this helps someone along the way.
However, I’m still looking for the solution as to why the <-Older Posts and Newer Posts -> doesn’t take me to the older/newer quotes. HELP!!!
.
Forum: Fixing WordPress
In reply to: Site title color/size change in 2010Ok, here’s the css
.entry-title {
clear: both;
color: #ffffcc;
display: none;
font-size: 5px;
font-weight: bold;
line-height: 1.5em;
padding-bottom: .3em;
padding-top: 5px;
}If I take the “display: none;” out, the titles re-appear, but if I change the font-size or color, nothing changes with either.
Thanks
Forum: Fixing WordPress
In reply to: 2010 theme post comment page mis-alignedOMG I must have gone over this a hundred times. I’m almost there. The misaligment is gone (yesssss), just a couple of tweaks and I’m there.
Thank you alchymyth!!! You totally rock.
Forum: Fixing WordPress
In reply to: Any Way to Rever Back to 3.4.2 from 3.5?Hi, having major issues with 3.5 also and would like to revert to 3.4.2 if at all possible until I can work out the kinks.
No one seems to be answering the question…. is there a way to revert to 3.4.2???
Forum: Fixing WordPress
In reply to: Why is tab html now called text?Oh and I did add the exact same html code into a post on a ver 3.4.2 site and it converted it on the website. Just FYI…..
Forum: Fixing WordPress
In reply to: Why is tab html now called text?I’m having the same issue…. it’s not a problem, yet, but I was confused as to why the HTML function was removed (or changed to TEXT). I tried adding html code into a post on the one site I’ve updated so far and it actually posted the html code on the site inside the post instead of converting it. Is this how it will be going forward? I just need to know…..
Forum: Themes and Templates
In reply to: 2010 theme post comment page mis-alignedThank you again Andrew, that fixed the problem. You ROCK!!!
Forum: Themes and Templates
In reply to: 2010 theme post comment page mis-alignedThanks Andrew…. I’ll start there. Appreciate your quick response
Forum: Themes and Templates
In reply to: Change colour of footer area in Twenty ElevenThanks, I’m glad I could help. Just as an FYI if you ever want to have no background color in your text area like this site
https://www.webbsjanitorial.com, use the background #fffcc. YES it’s 5 letters not 3 or 6, but for that website with the wooden floor background it just tickeled me to no end.Enjoy!!
Forum: Localhost Installs
In reply to: Transferring my WP site from local host to serverThank you so much for your response Theme Diva (love that name)….
I did read that but it was not complete enough for me. I have since moved my site and it’s up and running using a great plugin called “Duplicator”. It was extremely easy to use and uploaded my files to my new server easily. I had to make 3 very minor database tweaks which GoDaddy was wonderful in helping me with. All in all, between Duplicator and 10 minutes with the wonderful folks at GoDaddy, the move was rather painless. I don’t recommend that anyone tries this on their own without Duplicator. I’ve done it several times without and ended up redoing most of my page once I uploaded all the files to the new server.
Oh and I used a plugin called “Search and Replace” to convert any lingering LocalHost files to https://www.yourdomain.com to avoid any future confusion. Also super easy to use.
Thanks again for your response Theme Diva ;-))
Forum: Plugins
In reply to: [Contact Form 7] Submitted Text DisappearingI’m having a similar issue except my fonts don’t show up at all, probably because they’re white. I’ve tried following your instructions above to change the font color, but it did nothing.
I’ve also checked other browsers. The problem is universal.
Forum: Themes and Templates
In reply to: CSS error (I think)Perfect!!! That did the trick. Thanks Cynnie88…..
Forum: Themes and Templates
In reply to: Change colour of footer area in Twenty ElevenWhen I changed the padding size, it immediately skinnied down my footer. I took it from the 2.2em listed below to 1.2em and it’s now just a bit larger than the size of the 12px font.
/* Site Generator Line */
#site-generator {
background: #f9f9f9;
border-top: 1px solid #ddd;
color: #666;
font-size: 12px;
line-height: 2.2em;
padding: 2.2em 0.5em;
text-align: center;
}Forum: Themes and Templates
In reply to: How do I suppress the page title from showing in 2011 themeYour information was perfect…. thank you.