atracksler
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Tiles] Thumbnail images scaling? mine are too big!!sent to contact at ethanhackett dot com
Forum: Plugins
In reply to: [Post Tiles] Thumbnail images scaling? mine are too big!!nope. i changed both to 50×50, and the tiles got smaller, but the images stayed big.
Happy to send you a login to look around, if you like..Forum: Plugins
In reply to: [Post Tiles] Thumbnail images scaling? mine are too big!!The First two are ones that I went in and resized and uploaded 175 x 175 images for , the rest are regular featured images of varying sizes..
Forum: Themes and Templates
In reply to: Youtube URL in custom fieldDuh. I forgot to save the page before trying it out… the code above totally worked.
Forum: Themes and Templates
In reply to: Link featured image to gallery in lightbox?Forum: Themes and Templates
In reply to: Link featured image to gallery in lightbox?OK, I’m about halfway there!
Here is my revised loop:
[Code moderated as per the Forum Rules. Please use the pastebin]
my output is :
<a href="" rel="lightbox[post-1]"> <img width="113" height="113" src="https://myserver.net/files/2012/02/rob_TN.jpg" class="attachment-thumbnail-size wp-post-image" alt="rob_TN" title="rob_TN" /></a> <a href="" rel="lightbox[post-1]"> <img width="113" height="113" src="https://myserver.net.net/files/2012/02/nes_TN.jpg" class="attachment-thumbnail-size wp-post-image" alt="nes_TN" title="nes_TN" /></a> <a href="" rel="lightbox[post-1]"> <img width="113" height="113" src="https://myserver.net.net/files/2012/02/1.gif" class="attachment-thumbnail-size wp-post-image" alt="1" title="1" /></a>
How do i:
-get it to actually return the URL of the image?
– get the rel=”lightbox[post-1]” to return the ID of the post, instead of 1?Forum: Themes and Templates
In reply to: Link featured image to gallery in lightbox?sorry to be a pain in the neck…
here is my loop
<ul> <?php $posts = query_posts( $query_string . 'order=asc' ); ?> <?php if (have_posts()): while (have_posts()): the_post(); ?> <li><a href="<?php the_permalink() ?>"><?php the_post_thumbnail(); ?></a></li> <?php endwhile; endif; ?> </ul>
I’m not sure where all the code you posted goes……
Forum: Networking WordPress
In reply to: subdomain mapping for multisiteboth domains have A records pointing to the same IP.
I may just nix the .info and make the .org the main address..
Forum: Networking WordPress
In reply to: subdomain mapping for multisiteI own both domains.
.info is the main account in cpanel
.org is parked therei changed the .org to be the primary and neither site worked.
i changed the .info back to be the primary and now at least the .info works…Forum: Themes and Templates
In reply to: Twenty Ten – Featured images overriding Header image?i turned off all plugins that had anything to do with images, and still no….
Forum: Themes and Templates
In reply to: Twenty Ten – Featured images overriding Header image?well, I changed to twentyten (my custom theme is based on 2010… and still no go.
https://clc.citlchurches.info/2010/06/22/hello-world/
the image of the dogs tongue is the featured image, as well as inserted into the post…I feel like I’m doing something wrong…..
Forum: Themes and Templates
In reply to: Twenty Ten – Featured images overriding Header image?i did change the thumbnail defaults in functions.php to:
// The height and width of your custom header. You can hook into the theme's own filters to change these values. // Add a filter to twentyten_header_image_width and twentyten_header_image_height to change these values. define( 'HEADER_IMAGE_WIDTH', apply_filters( 'twentyten_header_image_width', 879 ) ); define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyten_header_image_height', 250 ) );
could that be causing it?
Forum: Themes and Templates
In reply to: Twenty Ten – Featured images overriding Header image?in the backend it is showing in the featured image section and it is bigger than the space allotted….
is the featured image different than the post thumbnail?
Forum: Themes and Templates
In reply to: Twenty Ten – Featured images overriding Header image?yes
// Check if this is a post or page, if it has a thumbnail, and if it's a big one if (is_singular() && has_post_thumbnail($post->ID) && ( /* $src, $width, $height */ $image = wp_get_attachment_image_src(get_post_thumbnail_id($post-> ID), 'post-thumbnail')) && $image[1] >= HEADER_IMAGE_WIDTH): // Houston, we have a new header image! echo get_the_post_thumbnail($post->ID, 'post-thumbnail'); else: ?> <img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" /> <?php endif; ?> </div>
Forum: Themes and Templates
In reply to: Twenty Ten – Featured images overriding Header image?okay, so my image is larger than the 940 px..
I have the image in the post and as the “featured image” for the post and still isnt showing up… any other ideas?