Chip Bennett
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Install theme tab not visable!1. Does your current user belong to the “Administrator” user role?
2. Are you using a single-site install, or a multi-site install?Forum: Themes and Templates
In reply to: one column page templeteFrom the Sliding Door Theme’s extend listing page:
A unique template featuring sliding images in the header. Uses a Custom Menu and Featured Images to create the sliding images. The theme has a comprehensive support forum at http://mac-host.com/support
Your best bet for quick response is probably to use the developer’s support. Looks like it’s pretty active.
Forum: Themes and Templates
In reply to: Elegant themes tim thumb version not working on cloud hostingAs Elegant Themes is a commercial Theme shop, that provides commercial support for their products, you should consult their support offerings.
Also: TimThunb should be considered as an inherent security risk on any WordPress site. I strongly recommend against using any Theme or Plugin that incorporates TimThumb.
Forum: Themes and Templates
In reply to: Installing a new theme – but t's a folder!1. Where did you get the Theme that you’re trying to install?
2. How are you trying to upload/install this Theme (FTP client, hosting file manager, etc.)?Forum: Themes and Templates
In reply to: Site crashed after activating new themeUse FTP, and delete the mygrid2 Theme entirely. i.e. delete this:
wp_content\themes\mygrid2Then, using your browser, navigate to your WP-admin backend. At that point, WordPress will automagically revert to the default Theme.
Then: update your WordPress installation. Why on earth are you still using WordPress 2.9.2? That version is well over 2 years old.
Hmm… “Tweet and download”? Really?
Here’s the diff for Twenty Eleven 1.3 compared to the previous version, 1.2:
http://themes.trac.wordpress.org/changeset?old_path=/twentyeleven/1.2&new_path=/twentyeleven/1.3That URL structure has a standard convention, that can be applied to any Theme, and any version. You just need to know:
1. Theme slug
2. Old version number
3. New version number:http://themes.trac.wordpress.org/changeset?old_path=/{themeslug}/{oldversion}&new_path=/{themeslug}/{newversion}Even easier: if you need to make changes to
header.php, then copywp-content\themes\parent-theme\header.phpintowp-content\themes\child-theme\, and then make changes in the latter location.Most Theme updates do not involve changes to the template files themselves, so the vast majority of the time, your Child Theme template files will be future-proof. However, if you need to know what has changed from one version to the next, I would recommend using the diff tool in Theme-Trac to see such changes easily.
What parent Theme are you using? I’ll show you how to use the diff tool for that Theme.
Where did you download the Fresh & Clean Theme that you’re currently using on your self-hosted WordPress install?
Forum: Themes and Templates
In reply to: Whats the easiest way to make this comlicated quiz?I don’t think you’re going to find an answer to this question in the “Themes and Templates” forum…
Forum: Fixing WordPress
In reply to: Second level nav using menusIf you want the second menu to be dynamic, then you don’t actually want to use
wp_nav_menu(). For all of its benefits, one of its limitations is that it is static. It doesn’t change based on context.I would recommend, instead, using
wp_list_pages(), which accepts a'child_of'parameter.Do you want the second menu to display pages that are children of the current page, or that are children of the current page’s parent page?
Forum: Themes and Templates
In reply to: Options page content placeI have read your tutorial but I still cant…
Can you tell me exactly what you can’t, so I can try to change that into a can?
Let’s start with the first step: can you define an array to hold your default option values?
Forum: Themes and Templates
In reply to: Options page content placeJust FYI, the code was moderated, so I never saw it.
There’s no reason you can’t put all of those options on one settings page. Just a fair warning, though: I’ll rely heavily on my tutorial (that Esmi linked, above). I would strongly recommend giving it a read, and then let me know what questions you have about following it.
Forum: Themes and Templates
In reply to: Options page content placeOkay, next step: what options exactly do you want to add? 🙂
Forum: Themes and Templates
In reply to: Options page content placeSorry, I’m confused by this:
I want to make my own main section in admin sidebar and place them under 3 different sub menus.
…compared to this:
I said that I found the theme options I want to include in my theme in three separate tutorials but I want to add them in one single submenu (in appearance as you said).
Probably due to insufficient amount of coffee today, I’m not following you. Let’s start from the beginning: leaving aside any tutorials you’ve found, what exactly do you want to do in your Theme? Once I’ve grasped that, I’ll try to help walk you through it.