Chip Bennett
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New to WordPress, could someone help please?Step one: create the content that you want to display, likely as Static Pages.
Step two: go to
Dashboard -> Appearance -> Menus, and create your custom navigation menu to suit your needs.Step three: apply that custom menu to the appropriate Theme Location provided by your current Theme.
Forum: Fixing WordPress
In reply to: How to "Publicize" on wordpress.org…although I was hoping for something that wordpress already offers.
WordPress doesn’t have social-network functionality out of the box. The “Publicize” feature on wordpress.com comes from a Plugin that provides the functionality. So, to get the same functionality on a self-hosted WordPress install, you’ll need to use a Plugin, as well.
Forum: Fixing WordPress
In reply to: social media icons being sillyUsing the Firebug extension for the Firefox web browser isn’t “learning a whole nother program”. It’s actually one of the easiest ways to understand how CSS rules are impacting a specific element on a site. (If you use Google Chrome browser, you could use the “Chrome Developer Tools” extension for the same purpose.)
Basic CSS really isn’t the purpose of the WordPress support forums. Esmi’s suggestion to use Firefox/Firebug is the standard “teach a man to fish” response to such questions.
If you need more basic CSS help, I would try a CSS forum.
Forum: Themes and Templates
In reply to: connecting my posts to my news page.Since you’ve developed a custom Theme, this isn’t a question that we can answer without seeing your custom Theme code.
Please post relevant Theme template files to a Pastebin, and link to them here in the thread.
Forum: Themes and Templates
In reply to: Parse error: syntax error, unexpected T_ELSEYou have an
else :, without a correspondingif :statement. Or, you have a syntax error on the line before theelse :.Two things:
1. Post any code greater than 10 lines in a Pastebin.
2. I don’t think the error is coming from the Twenty Elevenindex.phpfile. Note the error message:/www/htdocs/w00db417/index.php on line 33
If the error were coming from the Twenty Eleven
index.php, the error would likely read something like:/www/htdocs/w00db417/wp-content/themes/twentyeleven/index.php on line 33
Try looking in the file referenced in the actual filepath from the error message.
Forum: Themes and Templates
In reply to: Fatal Error on templateI’m going to make an absolute stab-in-the-dark. “ACF” is often associated with “Advanced Custom Fields”. By chance, does your Theme use/rely on the Advanced Custom Fields Plugin?
(Looks like class ACF_WP_QUERY is part of this Plugin.)
Try installing/activating (or updating) the Plugin, and see if the fatal error is resolved.
Forum: Themes and Templates
In reply to: Changing header code in functions.phpYou need to add your own filter:
function brunelleschi_child_filter_header_image_height( $height ) { // set equal whatever height you want; // e.g. for 300px, use 300 $new_height = 300; // now return it return $new_height; } add_filter( 'brunelleschi_header_image_height', 'brunelleschi_child_filter_header_image_height' );Forum: Themes and Templates
In reply to: Seperation of menus.You really can’t use
wp_nav_menu()to do what you’re wanting to do. That function is intended for user-defined, custom menus.You need to use
wp_list_pages(), using thechild_ofparameter; e.g.:<?php global $post; wp_list_pages( array( 'child_of' => $post->ID ) ); ?>Forum: Themes and Templates
In reply to: CSS Classes (optional) not outputting to sourceLet’s stick with Twenty Eleven, just to rule out any Theme-specific issues.
First question: how are you applying the custom CSS classes to your list items?
Forum: Themes and Templates
In reply to: Elegant Themes "Chameleon" Theme Custom Dropdown MenusErrr… Their themes are available for free download all over the place, though. Just as this one was… My first thought before posting my question here was to go to Elegant Theme’s support forum, but you have to be a paid member to even view their forum apparently…
…which is why you should have gone there for support.
These forums are not the appropriate venue for support for commercial Themes, or for Themes from shops that have commercial support options. The purpose of these forums is neither to support (for free) products for which the developer is paid to support, nor to deny that developer income from that paid support.
Forum: Themes and Templates
In reply to: Exchange Page Titles for Image Page TitlesWhy not just use that font? @font-face is your friend. 🙂
Forum: Themes and Templates
In reply to: Exchange Page Titles for Image Page TitlesWhy not just use CSS to use whatever font you want for your Post Titles?
(And, as esmi says: be sure to make such changes in a Child Theme.)
Forum: Themes and Templates
In reply to: CSS image paths and other MIME type issuesWhy are you linking jQuery from an external library, when WordPress bundles/enqueues its own version? That will almost always cause issues/conflicts/unintended consequences.
Forum: Fixing WordPress
In reply to: Posts Page Featured ImageI figure it’s good, for those of you who still have hair on your head. 😉
Forum: Fixing WordPress
In reply to: Posts Page Featured ImageGlad to hear it!
P.S. another good sanity check here would have been to use
has_post_thumbnail(), e.g.:<?php $homepage_has_featured_image = has_post_thumbnail( get_option( 'page_for_posts' ) ); ?>Might have saved a few pulled hairs. 🙂