Forum Replies Created
-
AuthorPosts
-
Oh! Okay, we were talking about two different types of titles. The title I was describing is what will show up in browser tab.
The page title you’re referring to is being pulled from page-title.php. Do you want that area to always show the page title instead of the description? If so, you can change this in your page-title.php:
Find this:
elseif ( is_singular( 'page' ) ) { echo '<div id="page-title"><div class="wrap"><p>' . esc_html( get_bloginfo( 'description' ) ) . '<a class="page-title-button" href="#">' . __( 'Subscribe Now', 'minimum' ) . '</a></p></div></div>'; }Change to this:
elseif ( is_singular( 'page' ) ) { echo '<div id="page-title"><div class="wrap"><p>' . esc_html( get_the_title() ) . '<a class="page-title-button" href="#">' . __( 'Subscribe Now', 'minimum' ) . '</a></p></div></div>'; }Note: The only thing I changed in that code was to remove get_bloginfo( ‘description’ ) and replace it with get_the_title()
Cheers,
Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
Hi there,
This sounds like an issue with the forms plugin, not Genesis. I recommend posting directly to the plugin support page here:
http://wordpress.org/support/plugin/formidable
Cheers,
Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
May 16, 2013 at 7:30 am in reply to: Updated to Genesis 1.9.2. and my Cateogry Urls aren't working #41176Hi,
Try visiting your Permalinks page from Settings. Sometimes that alone can fix funky URL issues.
Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
Hi,
Are you using an SEO plugin? If not, then the default Genesis SEO will allow you to specify custom titles on individual post/pages.
Go to any post/page edit screen and look in the upper right corner for the “Screen Options” tab. Open that up and make sure that Theme SEO settings is checked.
Once done, the SEO settings will be visible below the post content in a separate metabox. From there you can add a custom title.
Cheers,
Carrie
p.s. Even if you’re using a different SEO plugin, chances are still pretty good you’ll have the custom title option.
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
Do you want to display featured images on individual lposts at all (other than for YARRP or archive pages?)
If NOT, find this in functions.php:
/** Add the featured image section */ add_action( 'genesis_after_header', 'minimum_featured_image' ); function minimum_featured_image() { if ( is_home() ) { echo '<div id="featured-image"><img src="'. get_stylesheet_directory_uri() . '/images/sample.jpg" /></div>'; } elseif ( is_singular( array( 'post', 'page' ) ) && has_post_thumbnail() ){ echo '<div id="featured-image">'; echo get_the_post_thumbnail($thumbnail->ID, 'header'); echo '</div>'; } }You can remove the entire elseif block so your final code would look like this:
/** Add the featured image section */ add_action( 'genesis_after_header', 'minimum_featured_image' ); function minimum_featured_image() { if ( is_home() ) { echo '<div id="featured-image"><img src="'. get_stylesheet_directory_uri() . '/images/sample.jpg" /></div>'; } }Cheers,
Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
May 13, 2013 at 7:30 am in reply to: Streamline: How to get newsletter banner name box above email box? #40650Hi mcclinton,
Please start a new thread with your question.
Thanks,
Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
May 7, 2013 at 3:27 pm in reply to: Executive Theme – ERROR: The themes directory is either empty or doesn’t exist. #39768Andrea – glad you got it fixed!
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
Now that I think about it…maybe the difference is when using theme support for a custom header, like
add_theme_support( ‘genesis-custom-header’…..
I could be making stuff up. But I swear I’ve seen that P in some themes.
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
p.s. If you’re on Google+, check out the Genesis WP community. Also, if you’re on Twitter, you can use the hashtag #genesiswp to interact with other Genesis folks.
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
Hey Sanjeev,
Welcome to Genesis! At first glance, your site looks fantastic- love the Metro theme. It looks like you figured out the basics of setting everything up. Now the rest of the sites you do in Genesis will be a piece of cake.
Cheers,
Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
May 2, 2013 at 5:40 pm in reply to: Executive Theme – ERROR: The themes directory is either empty or doesn’t exist. #39000Hrm… For starters, I’m not a Multisite expert.
Can you login via FTP or similar and see the physical files on the server? If so, just confirm that the Executive Theme folder is there as it should be (complete with a style sheet and a functions.php). Assuming it is, sometimes you can activate the parent theme (or any other theme) and then RE-activate Executive and that could solve the weirdness.
Not sure if that’ll work, but it’s the troubleshooting step I would try first!
Cheers,
Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
Hi,
If you made edits directly to style.css in the 1.8 version of AgentPress, they will be lost will when you upgraded the child theme. If you have a backup of 1.8, you can take the style.css file and pull out the customizations you need. Otherwise, you’ll need to re-do them. :/Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
Hi there,
You’ll need to edit the theme’s style.css and find every instance of the color you want to change and swap it out for your color.If you’re using Firefox or Chrome browsers, you can use Firebug to see what color is currently displayed on an item. Once you’ve identified it, then you can go about editing your CSS.
Cheers,
Carrie
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
Ah! Okay, that’s actually perfectly normal behavior.
H1′s are reserved for individual page/post titles. The site title’s supposed to be in a paragraph tag.

Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
Can you post a link? Also which pages (all pages?) is it happening on? Wondering if there’s a DIV that didn’t get closed out?
Have you been helped in this forum? Pay it forward and answer someone else’s question. I bet you’ll know the answer to at least one question.
I tweet @cdils.
-
This reply was modified 2 weeks, 6 days ago by
cdils.
-
This reply was modified 2 weeks, 6 days ago by
cdils.
-
This reply was modified 2 weeks, 6 days ago by
-
AuthorPosts