Jeremy Pry
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to disable the navigation bar?Ah, I see what you’re talking about now. First I would check for any settings related to Breadcrumbs in your theme to see if there’s an option to turn them off. If you can’t find any, you can modify line #139 in your style.css file. Add the attribute
display: none;to#breadcrumbs.Forum: Themes and Templates
In reply to: How to disable the navigation bar?In your style.css, take a look at line #138. The selector is
h1.category-title. Adjust thepadding-topattribute.Is that space what you’re referring to, or have I misunderstood your request?
Forum: Themes and Templates
In reply to: Need PHP help with loopNo problem! Glad to help out!
Forum: Themes and Templates
In reply to: Need PHP help with loopLooks like I need to check things more thoroughly. I juste edited that new pastebin link. Refresh and try it one more time. I think I finally found where the problem was.
Forum: Themes and Templates
In reply to: Need PHP help with loopTell me what results this one gives you: http://pastebin.com/fDJsft4X.
Forum: Themes and Templates
In reply to: Need PHP help with loopAnd I actually found one more error (a missing closing brace for the elseif). You may have to refresh and try one more time.
Forum: Themes and Templates
In reply to: Need PHP help with loopSorry about that, I missed a closing
?>tag. Should be corrected now.Forum: Fixing WordPress
In reply to: Encoding Problem?I checked out your link, and everything looks fine to me, in multiple browsers on multiple platfroms.
One thing to note: the link you provided is for a wordpress.COM site, not a wordpress.ORG site. See this page for the distinction between the two: http://en.support.wordpress.com/com-vs-org/
In particular, these forums are meant for helping people with their wordpress.ORG sites. You should check the wordpress.COM forums/support for assistance with a wordpress.COM site.
Forum: Themes and Templates
In reply to: Need PHP help with loopYou can just write an if statement within your elseif statement. Try this out:
I’ve tweaked a bunch of stuff to make it closer to WordPress Coding Standards. I’ve also changed some of your function usage to make sure that it actually outputs what you expect (such as using
new WP_Query();instead ofquery_posts();).Forum: Themes and Templates
In reply to: What Do I do About a Parse Error in My ThemeThe problem is that the function
_e()takes two arguments, but you only supplied one. Check out the codex for exactly how to use that function: http://codex.wordpress.org/Function_Reference/_eForum: Themes and Templates
In reply to: Uploading Custom Woo Theme W/FileZillaIt’s possible that the theme is within an extra folder. So instead of unzipping to
Theme/ ..style.css ..functions.php ...etcIt might be:
Folder/ ..Theme/ .. ..style.CSS .. .. functions.php .. ..etc.That’s the most likely reason I can think of for it telling you that you have an incomplete theme.
Forum: Networking WordPress
In reply to: wp_1_ tables not created in new MultiSite installWell, I went the route of manually installing, and I ended up with the same thing. I decided that there’s no way that this can be something wrong with WordPress, or else I wouldn’t be the only one with this problem, so I decided to check every little detail again.
The good news is that I found what was wrong, and it wasn’t Simple Scripts. The bad news is that all this time, it was complete user error (i.e. me)… I somehow kept missing this line in wp-config.php:
define( 'MULTISITE', true );Yep, one all-important line. I don’t know how I managed to miss it every time, and I’m a bit embarrassed at missing something like that, but I am very grateful for all the help, Ipstenu and Andrea_r. I’ve got it up and running now.
Thanks!
Forum: Networking WordPress
In reply to: wp_1_ tables not created in new MultiSite install@ipstenu: Let’s eliminate all assumptions then. My host is HostMonster (I think it’s basically the same company as Bluehost). I’m using their Simple Scripts to automatically setup WordPress initially, including the DB and DB users. From there, I login to the admin page, and then begin following the instructions for creating a network.
I had previously had a multisite set up (I think it was with version 3.0), and tht worked with no problem. I recently decided I wanted to start things fresh, which is where I’m at now. Based on that experience, I’m assuming that setting up a network is no problem on that host.
@andrea_r: What DB tables should I look for? I can check to see if they are there.
Forum: Networking WordPress
In reply to: wp_1_ tables not created in new MultiSite installThere was a WordPress.com Jetpack plugin installed, but it was deactivated. Other than that, it was just the Akismet and Hello Dolly plugins that come with WordPress.
Forum: Networking WordPress
In reply to: wp_1_ tables not created in new MultiSite installYes, I made the site, logged in successfully, and then started following the directions for setting up multisite. The code that was copied into my wp-config.php and .htaccess files was copied from my Dashboard > Tools > Network page.