Forum Replies Created
-
AuthorPosts
-
March 27, 2013 at 8:46 pm in reply to: New image sizes not showing up in Genesis Featured Widget #31653
In lib/structure/custom.php, prose_do_custom_php() only requires the file if ! is_admin()
Hello Jonathan,
The question is quite vague as to your needs. However, this should help you get you on your way:
Use
#home-slideror.home-widget. All my widets on my home page (not in sidebar) get .home-widget in case I want to style them a specific way. Then I use the ID to select a particular widget.
Add the slider to the Home Slider widget in http://domain.com/wp-admin/widgets.php not Header Right.
It appears that you’ve already done it. It’s done via CSS if not with a custom header.
.header-image #header #title-area { background: url(images/logo.png) left top no-repeat; }
February 13, 2013 at 11:40 pm in reply to: Trouble with Images on my blog posts (Need Help Please!) #20224Hello,
Can you please post your functions.php file, especially anything that looks like this:
/** Add new image sizes */ add_image_size( 'home-featured', 255, 80, TRUE ); add_image_size( 'post-image', 642, 250, TRUE );
See also WordPress codex on add_image_size().
Then in Genesis > Theme Settings what is your image size selection?
Finally, did you install theme AFTER you already uploaded images, etc? If so, you need to regenerate thumbnails.
While I am not sure how it will turn out, you can try something like this:
add_action( ‘genesis_site_description’, ‘child_social_icons’ );
/**
* Output social icons (in header)
*/
function child_social_icons() {
//output icons here…
}
February 13, 2013 at 11:15 pm in reply to: Is there a Compatibility Issue with WordPress 3.5.1? #20221Hello,
If I am not mistaken, you are using Lifestyle 1, which does have deprecated code within it that would be problematic and may be the source of your issues.
Could you please post your functions.php code?
Thanks,
Travis
February 13, 2013 at 11:10 pm in reply to: How to exclude Breadcrumbs from certain categories #20220First, you need to register the sidebar for the backend. Just add the sidebar registration to the functions.php file
And then, you add it to your home.php file.
This was fixed in trunk on 1.17.2013 by Mark Jaquith in his audit. Release fix TBD.
Personally, I believe this to be a WordPress issue since map_meta_cap() does not check or sanitize $args[0]. So I’ve submitted a ticket to WordPress core as a result.
Bill’s right, but you probably want to add a priority to guarantee it comes after.
add_action( 'wp_enqueue_scripts', 'child_load_styles', 99 );
function child_load_styles() {
wp_enqueue_style('child_style_css', CHILD_URL . 'child_styles.css');
}
-
AuthorPosts