Jeremy Pry
Forum Replies Created
-
Forum: Themes and Templates
In reply to: get rid of stupid bar in wp3.1You can use a plugin, but you don’t have to. In the admin section of WordPress, go to your user profile, and uncheck both boxes next to “Show Admin Bar”.
Forum: Themes and Templates
In reply to: Replacing the […] in an ExcerptHonestly, I don’t see any of this as a waste of time. It seemed that you were in a hurry for the information, so I wanted to point out that it might have saved you some time.
Perhaps I could have phrased my answer to be less condescending, as it wasn’t meant to be that way. I wanted to make sure that you were aware of the available tools to assist you, as well as the general conventions used on these forums.
If you’d like to be more specific, you can completely remove the ellipses (not just replace them with different text) with this code:
function new_excerpt_more($more) { return ''; } add_filter('excerpt_more', 'new_excerpt_more')Forum: Themes and Templates
In reply to: Replacing the […] in an ExcerptHave you tried searching through the codex to see what information is in there? The exact thing that you’re asking is actually documented there.
Here’s the link to the page: http://codex.wordpress.org/Function_Reference/the_excerpt.
In general, it’s good to search around instead of only relying on the forums. This usually ends up saving you time, because there are lots of issues that people before you have had, and have figured out a solution for.
If any of this seems a bit surprising, or if it’s new to you, it would be a good idea to check out http://codex.wordpress.org/Forum_Welcome.
Forum: Themes and Templates
In reply to: Bullet Point AlignmentFor
.entry ol li, change “inside” to “outside”. The end result is this:.entry ol li { list-style:decimal outside !important; font-size:12px; padding:3px 0px; }Forum: Themes and Templates
In reply to: Puzzling Error in Theme – Feel like I've tried everythingI don’t know that I have anything else to offer, other than to point you in (what I believe to be) the right direction. Here’s the general layout of the working page:
Here’s the general layout of the non-working page:
I’d be willing to bet you’re missing a closing
</div>tag somewhere.Forum: Themes and Templates
In reply to: Puzzling Error in Theme – Feel like I've tried everythingFortunately, this is a simple fix. Go to approximately line 96 of your style.css stylesheet, and you should see the
.centercolumnsettings. Add a line that sets the height, like this:height: 800px;. Adjust this as you feel is needed.The reason you’re seeing this problem is somewhat interesting. Basically, you have 3 main
<div>elements on your page. All of your main content is in your top one, but it’s only 60px tall. The reason you’re still able to see everything is that you have theoverflow: visible;property set.Setting the height expands this div to the correct size, which allows more of the background to be seen.
Forum: Themes and Templates
In reply to: Puzzling Error in Theme – Feel like I've tried everythingCould you be a little bit more specific about what needs to change? Just comparing the two pages, there are too many differences to know exactly what it is that you’re looking at as a problem.
Forum: Themes and Templates
In reply to: Addin a new sidebar to the left – genesis themeIt looks like you managed to get the sidebar up. What did you need to do to add it in?
Forum: Themes and Templates
In reply to: eval((base64_decode in footer.phpThere’s a sticky post at the top of this forum: http://wordpress.org/support/topic/how-to-decrypt-an-encoded-theme?replies=3.
If you use the 4th hyperlink found in that post (it links to http://ottodestruct.com/decoder2.php), then paste in everything beginning with
$OOO0O0O00, you will get the decoded version.Forum: Themes and Templates
In reply to: Addin a new sidebar to the left – genesis themeAh, my apologies. I was thinking you were using the Genesis theme from studiopress.com. I’m not familiar with the theme you’re using.
Forum: Themes and Templates
In reply to: Addin a new sidebar to the left – genesis themeDid you change the layout settings in the Genesis theme settings in the Admin page? You would have to select the Sidebar-Content-Sidebar setting. Otherwise, the “secondary” sidebar won’t show up.
If you DO have that set already, then check the page-specific settings by editing the page. Genesis adds a layout selection option at the bottom.
Forum: Themes and Templates
In reply to: Adding Google Analytics?I’d recommend using the plugin named “Google Analyticator”. It makes it easy to insert your Google Analytics code without having to worry about editing files. Just do a search for plugins in your WordPress Dashboard, install it, activate it, and follow the instructions it gives.
Forum: Themes and Templates
In reply to: Post Title SpacingThe problem is your
<h2>headers are buried in three levels of<div>elements, each of which have various padding and/or margin settings. Check your stylesheet for the settings for these classes:- art-post
- art-post-body
- art-post-inner
- art-article
Forum: Themes and Templates
In reply to: Adding Multiple Sidebars to Studio ThemeI made some tweaks to your code. A lot of changes were just for easier readability, but I also modified how you were setting up and calling the sidebars. Try this code and see if it works any better for you: http://pastebin.com/BE5M2k8c.
Forum: Themes and Templates
In reply to: Adding Multiple Sidebars to Studio ThemeSorry, you’re right… I was still thinking of using individual templates. You should be able to use
is_page_template().For that “T_STRING” error, post the exact error message, and use the WordPress pastebin to post your entire template file. That should make it easier to figure out what’s going wrong.
I may not be able to look at this much more tonight (as it’s getting late in my timezone), but there are of course plenty of others here in these forums, and I can take a look tomorrow if someone else hasn’t helped you by then.