davesschneider
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: post images showing up in some themes, not othersOkay, I see what you are asking. The featured image is different than an image you just import into your post via the media uploader. Most themes won’t inherently pull an image that you import into your post via the media uploader and use it for the post thumbnail. The featured image is a wp function that has its own uploader on the edit post page.
Do this: go to your edit page for one of your posts and look for the “Featured Image” box. (Usually near the bottom of the page in the right column if you haven’t changed the default settings. Looks something like this ->
https://davescottschneider.com/wp-content/uploads/2014/09/Screen-Shot-2014-09-08-at-9.24.33-AM.png
If you don’t see that, it probably means the theme you are using does not support the Featured Image function.
Sidenote: You can also check to see if the featured image box is just hidden on your post edit screen by clicking the ‘Screen Options’ dropdown tab in the top right corner of the edit post page. If “Featured Image” is there but not checked, go ahead and check the box and the featured image uploader box will appear on your edit post pages.
Does this help explain it?
Any time. Keep at it
Line 341 of your style.css:
.narrowcolumn .entry, .widecolumn .entry { border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; background-color: #E3E3E3; border-top: 1px #A0B3C2 solid; font-family: "Lucida Sans Unicode" , "Lucida Grande", Sans-Serif; line-height: 1.7em; margin-top: 4px; padding: 2px 4px 1px; width: 98%; }
Forum: Themes and Templates
In reply to: [Simple Catch] style issueUh… What um… is the question? lol
Forum: Themes and Templates
In reply to: [Theme: Pilcrow] Changing header text to header imageThis is a pretty straightforward tutorial to adding an logo uploader to your wp theme:
It is a piece of css creating a margin:
#secondary.home_front_wrap { margin-bottom: 200px; }
Edit: It’s on line 395 of your main css file
Forum: Fixing WordPress
In reply to: Accessing Administration PageForum: Fixing WordPress
In reply to: post images showing up in some themes, not othersAre you talking about the featured image of the post? or an image that you have added inline in your content?
If it is the featured image you are referring to, the themes that aren’t displaying it simply don’t support post thumbnails or don’t show them because there is no code to display them. If the theme utilizes thumbs in any way, you will see this in the functions.php file:
add_theme_support( 'post-thumbnails' );
If it displays the post thumbnails, you will see something along these lines on the single.php or post.php file:
if ( has_post_thumbnail() ) { the_post_thumbnail(); }
Hope this helps
First off, I would register your two menus on your functions.php file like this:
register_nav_menus( array( 'primary' => __( 'Primary Menu', 'THEMESLUG' ), 'secondary' => __( 'Secondary Menu', 'THEMESLUG'), ) );
Just make sure to replace ‘THEMESLUG’ with your theme’s slug. Next, go to your header.php file and replace your nav menu call with this:
<?php if (is_page_template('accountant-section.php')) { wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'menu-class' ) ); } else { wp_nav_menu( array( 'theme_location' => 'secondary', 'menu_class' => 'menu-class' ) ); }?>