Michael Fields
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: What is the wordpress forum made on?Forum: Fixing WordPress
In reply to: Automatic resize every time you upload an image in MEDIAirishblue,
How large is the image that you originally uploaded? if is is smaller than the sizes in Media Settings -> Image sizes then WordPress will not create smaller versions. Try uploading an image larger than your largest setting to see if the options appear.Forum: Fixing WordPress
In reply to: Automatic resize every time you upload an image in MEDIAok… I see. Unfortunately, WordPress does not resize the actual image that you upload. It creates 3 smaller versions of it, leaving the uploaded image untouched. I would suggest that you create all of your images at 1024×768 before you upload them.
Another solution would be to link to the “big-sized” image when you “Insert into Post”… unfortunately, you would have to know the filename of the large image. I check the source code and this part of the media system does not appear to be pluggable.
Another option may be to check out this plugin:
http://ww.wp.xz.cn/extend/plugins/nextgen-gallery/Lots of people use it and it may help you out.
Best of luck.
Forum: Everything else WordPress
In reply to: Is removing the WP Theme footer legal?Yes. Copyright statements like this generally refer to the content rather than the technology used to generate the code that displays it.
Forum: Plugins
In reply to: Need drop-down menu system that works with iNoveIt’s pretty automatic… you just need to set parent-child relationship for your pages. First, set up a page that you would like to appear in a dropdown. Then under “Attributes” on the right-hand side of the edit post screen you will see a drop down for “Page Parent” select a top level page and click “Update Page”.
Forum: Fixing WordPress
In reply to: image size after cruching is wrongNavigate to “Settings” -> “Media” in wp-admin and make sure that the “Crop thumbnail to exact dimensions (normally thumbnails are proportional)” is not checked. This is the only option in WordPress that would cause an image to be cropped.
Forum: Fixing WordPress
In reply to: Automatic resize every time you upload an image in MEDIAYes… WordPress automatically makes 3 different sized images for you. You can adjust the settings in “Settings” -> “Media”
Forum: Fixing WordPress
In reply to: How to include link to home in call to wp_list_pages?There’s a new function in 2.7. for this. Please read:
Forum: Fixing WordPress
In reply to: Gallery ExcludeForum: Plugins
In reply to: Thumbnail for home page & regular size image for permalink pageNot a plugin, but it does what you need:
http://ww.wp.xz.cn/support/topic/209656?replies=11
Please use the code from my second post on the thread.
Hope this helps.Forum: Plugins
In reply to: Need drop-down menu system that works with iNoveiNove comes with dropdowns. If you run into problems with the width, please see this post: http://ww.wp.xz.cn/support/topic/231598?replies=6
Forum: Fixing WordPress
In reply to: Permalink “P”This pretty much falls into the category of “if it ain’t broke then don’t try to fix it”. You would have to hack multiple core files to achive this goal with little payout. Updating WordPress would be close to a nightmare. Look into using “Pretty Permalinks” if you are upset with your location bar’s display of your posts.
Forum: Everything else WordPress
In reply to: Is removing the WP Theme footer legal?You can delete the WordPress stuff at the bottom if you like… it is in no way illegal to do so.
Forum: Fixing WordPress
In reply to: How to create a page that presents all post images?The answer would be “custom work” using WordPress functionality. This is pretty easy to achieve. Just plug the following code into your themes’ archives.php file make sure you overwrite the Loop that you have in there right now:
<?php /* WordPress Loop - Display only linked thumbnails ==================================================== */ if (have_posts()) : while (have_posts()) : the_post(); update_post_caches($posts); $images = get_children( array( 'post_parent' => $post->ID, 'numberposts' => 1, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order' ) ); if ( $images ) { foreach ( $images as $id => $image ) { $img = wp_get_attachment_thumb_url( $image->ID ); $link = get_permalink( $post->ID ); print "\n\n" . '<a class="alignleft" href="' . $link . '"><img src="' . $img . '" alt="" />'; } } endwhile; print '<div class="clear"></div>'; else : print '<div class="errorbox">' . __('Sorry, no posts matched your criteria.') . '</div>'; endif; ?>Forum: Plugins
In reply to: How can i add an image attachment to a post without the editor?I want to add an image (which is located in a subfolder of my WordPress directory) to the gallery of an existing post.
Basically, there is no simple way to do this. You will need to upload your image through the WordPress uploader for it to automatically show in the gallery. (you are speaking of the gallery shortcode, right?).
If you are comfortable with intermediate/advanced php + WordPress, you can recode the plugin to use WordPress’ core functions to save the file as an actual “attachment” WordPress style. Line # 2234 of /wp-includes/post.php has the definition of the wp_insert_attachment() function. This would be a great place to start.
If you are not up to the coding, you could always request that the plugin author add this functionality. I scoped out his site and he seems like a nice guy.
Best of luck,
-Mike