Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • One final note: as discussed in this thread, any changes made to the default themes (Twenty Ten and Twenty Eleven) will be lost when you update WordPress. So, it’s best to apply changes using a child theme. Sorry about not mentioning this earlier!

    You can download a Twenty Eleven child theme here:
    http://www.mediafire.com/?rbomrbzblsb84nw

    You can download a Twenty Ten child theme here:
    http://www.mediafire.com/?y2sj8evqvb5jre2

    Um, I don’t have a blog, and besides: this is a support forum – I don’t think it’s appropriate to share personal links, etc.

    Edit: You can paste it at the bottom of your style.css file, but remember to change the link so it points to your own image.

    As an example, you can add a background like so, in your style.css file:

    body {
    	background: url(http://www.gomediazine.com/wp-content/images/2008/12/finalrepeating-pattern.jpg) !important;
    }

    Obviously, the image I used above is only an example; use you own image hosted on your own site, hot-linking is a seriously bad practice! Just sayin’

    I’m sorry to hear that, but it’s a really easy fix: just remove the code you pasted in earlier. I’m sure it was wrapped in <?php and ?> tags, and that’s what’s causing the parse error.

    Also, since it’s twentyten, my above fix stands:

    Change this:

    $args['show_home'] = true;

    …to this:

    $args['show_home'] = 'BLOG';

    (in functions.php)

    Are you using the twentyten theme?

    If so, delete the code you pasted in and just search (Ctrl+F) functions.php for $args['show_home'] = true; and replace true with 'BLOG' It’s on line 222 in my twentyten functions.php file.

    If you’re not using twentyten, make sure you paste the code in just like I gave it above, no <?php or ?> tags, etc. Double-check to make sure 😉

    Paste this at the bottom of your theme’s functions.php file:

    function quick_menu_fix( $args ) {
    	$args['show_home'] = 'BLOG';
    	return $args;
    }
    add_filter( 'wp_page_menu_args', 'quick_menu_fix' );

    This will change Home to BLOG.

    What do you mean by “crashing everything”?
    Do you get an error message?

    Please post more info (in context, include the surrounding code),
    otherwise nobody will be able to help you out!

    Ditto. It seems like a logical feature to implement too, I mean, why return only the full-size image when WordPress already has built-in support for various (including custom) thumbnail sizes? It’s very unlikely that users will upload images with consistent dimensions, so returning the full-size image is useless for a slider, which by its very nature requires consistent image dimensions! I sure hope this gets resolved soonish :/

    @ Derek Herman: Perhaps, where get_option_tree() currently returns an array with [image] => *URL* it should instead return [image] => *array with each WordPress image/thumbnail-size as the key and its URL as the value*? Does that make sense, or am I just being stupid?

Viewing 8 replies - 1 through 8 (of 8 total)