Tisha Oehmen
Forum Replies Created
-
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images] Thumbails with Subcategory ListDid you ever get your question resolved? This code works for me on a template page. As written, It displays all the subcategories of category 3, except subcategory 708, in a descending manner based on post count — and hides any that don’t have at least 2 posts. Feel free to change the parameters as you need.
add_action('genesis_post_content', 'pmg_category_images'); // Adds your custom home page code function pmg_category_images(){ ?><div class="catimglist"> <?php global $taxonomy_images_plugin; $cats = get_categories( 'order=desc&orderby=count&child_of=3&hide_empty=1&term_id=-708' ); foreach ( $cats as $c ) { if ($c->count > 1){ $url = get_category_link( $c->term_id ); $img = $taxonomy_images_plugin->get_image_html( 'thumbnail', $c->term_taxonomy_id ); if( !empty( $img ) ) print '<a href="' . $url . '" title="' . '">' . $img . '</a>'; } } ?> </div>
Different site than the other one I just posted about — But I too am seeing a file that fails to restore.
The full site backup, which when zipped shows to be 30MB large, downloaded and extracted shows only one file, .wpcmanifest for 1KB.
It will not restore from server and it will not restore from disk.
Using version WP Complete Version 3.0.5
Ideas?
Thanks for the response — all in all the plugin works so well that it’s just a minor inconvenience. But if you decide to fix it with an addon, I’d happily pay for it as well. Thanks for your great work!
Forum: Fixing WordPress
In reply to: Style author bioIt’s not ideal, but try adding a plugin like “Quick Page/Post Redirect” and copy the thumbnail url and map it to the address you would like it to go to instead.
I do this with albums I want linked to posts.
Forum: Themes and Templates
In reply to: Navigation MenuCooper.a.Smith were you ever able to get this to work? I’m trying to do the same thing and can get the menu to display but loose all the styling.