glenncvance
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Don't Show a Featured Image When There is No Featured ImageAnd that is why I LOVE the forums here! I’ve been working with WP for several years but if I ever can’t figure something out someone on the forums usually has the answer.
alchymyth – Worked like a charm! My posts with thumbs show properly AND my posts without thumbs don’t have the border anymore! Thank you!
Forum: Fixing WordPress
In reply to: Most of post editor page is gone?Well huh. We need fewer developers on this project.
That fixed it. Thanks mercime!
Forum: Fixing WordPress
In reply to: Dashboard buttons missingDid someone at the agency set up your username/password? Maybe they didn’t quite give you administrator rights.
Forum: Fixing WordPress
In reply to: Too much spacingin your style sheet find ul#portfolio
Take out the 1em and replace it with either 0em or you can go negative on the value and do -1em.
That’ll do it.
Forum: Themes and Templates
In reply to: how to remove the search bar OulipoYou could comment it out. Like this –
<!--<?php include (TEMPLATEPATH . '/searchform.php'); ?>-->
Forum: Fixing WordPress
In reply to: Post date shows sometimes but not all of the timeWell hot damn. It works the way I wanted it to now. Thanks to both of you. Much appreciated!
Forum: Fixing WordPress
In reply to: Post date shows sometimes but not all of the timeWell, I guess, but not the way I wanted it. The post date does show on the first post, but not the second post that was posted the same day. I’ll keep digging for some code that might accomplish that.
Thanks alchymyth.
Forum: Fixing WordPress
In reply to: Post date shows sometimes but not all of the timeOk, that makes sense. 2 asides were posted on the same day and the date only shows for one of them (the first one).
FYI, I posted the code and a link to my site in the original request.
Forum: Fixing WordPress
In reply to: Post date shows sometimes but not all of the timeI appreciate the links, but that doesn’t help me at all. I know the difference between the_date and the_time. I’m trying to figure out why the date shows sometimes and not all of the time.
Forum: Fixing WordPress
In reply to: Order wp_list_bookmarks by post dateOk, thanks.
Forum: Fixing WordPress
In reply to: RSS FeedIn Firefox I just clicked the RSS icon in the address bar and when FF tried to add your site to Google Reader it showed the RSS link.
That’s it.
Forum: Fixing WordPress
In reply to: RSS FeedLooks like your feed address is https://socialheavy.net/?feed=rss2.
Forum: Fixing WordPress
In reply to: Remove backround imageI would search in style.css for “background”. That should help you find it. Good luck!
Forum: Themes and Templates
In reply to: Suggestion – Looking for 3 column themeAmazing what a little leg work will get you.
rather than use the set margin given in the style sheet –
margin: 0 auto;
All I needed to do to get the fixed width and left alignment that I wanted was –
margin: 10px 0px 10px 25px;
and…voila! Fixed width and left alignment taken care of.
Forum: Fixing WordPress
In reply to: Adding posts on new pages and page urlsAre you saying that when you add posts to your blog they are all on the same page, without links at the bottom of the page for ‘newer/older’ posts?
Go to Settings -> Reading and look for the line that says ‘Blog pages show at most # posts’
As for the permalinks you’ll have to use a custom structure setup, like ‘/%postname%/’ (minus the quotes) to get them the way you want them. After you change it reload the site in your browser and the links should work.