Montresor
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Change Home To BlogOne 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/?rbomrbzblsb84nwYou can download a Twenty Ten child theme here:
http://www.mediafire.com/?y2sj8evqvb5jre2Forum: Themes and Templates
In reply to: Change Home To BlogUm, 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.
Forum: Themes and Templates
In reply to: Change Home To BlogAs an example, you can add a background like so, in your
style.cssfile: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’
Forum: Themes and Templates
In reply to: Change Home To BlogI’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
<?phpand?>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)
Forum: Themes and Templates
In reply to: Change Home To BlogAre 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 replacetruewith'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
<?phpor?>tags, etc. Double-check to make sure 😉Forum: Themes and Templates
In reply to: Change Home To BlogPaste 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.
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] get_option_tree in admin?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!Forum: Plugins
In reply to: [plugin: optiontree] get post thumbnail size of sliderDitto. 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?