erickeel
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Lightbox 2] Background Image DisappersI’m having the same issue, but this thread says it’s resolved. How was it fixed?
Forum: Fixing WordPress
In reply to: Post-new.phpForum: Fixing WordPress
In reply to: Post-new.phpI’m pretty sure it’s this one: Dysania Grid Gallery – It came with the theme I bought
Forum: Fixing WordPress
In reply to: Open in new windowYou are a genius. Thank you.
Forum: Fixing WordPress
In reply to: Featured Image – Outbound LinkIt’s almost like something in the index.php is overriding it…
Forum: Fixing WordPress
In reply to: Featured Image – Outbound LinkYeah, I installed it, but it is still redirecting me back to mywebsite.com/#
Forum: Fixing WordPress
In reply to: Featured Image – Outbound LinkDoes that plugin work with a post that only includes a featured image? No text, just the featured image.
Forum: Fixing WordPress
In reply to: Featured Image – Outbound LinkOk, I reinserted the original index.php file/ each pic is a different post / and each category (5pics) will link to a separate link.
Forum: Fixing WordPress
In reply to: Featured Image – Outbound LinkI added a custom field where I added the link for each picture, but it doesn’t seem to be communicating back and forth.
Forum: Fixing WordPress
In reply to: Featured Image – Outbound LinkI found this, but I don’t know what to add/delete to allow the outbound link.
I also found this on an existing forum, but am unable to figure out how to merge the two…
<?php query_posts( 'cat=Featured&posts_per_page=5' ); if( have_posts() ) : while( have_posts() ) : the_post(); ?> <?php $key="featured_external"; $custom = get_post_meta($post->ID, $key, true); ?> <?php if(has_post_thumbnail()) { if($content = $post->post_content ) { ?> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php the_post_thumbnail(); ?> </a> <?php } else { ?> <a href="<?php $key="featured_external"; echo get_post_meta($post->ID, $key, true); ?>" title="<?php the_title(); ?>"> <?php the_post_thumbnail(); ?> </a> <?php } ?> <?php } ?> <?php endwhile; endif;?>Here’s my sight: http://www.servantdesign.com
and I would like the 15 pictures in the “Work” Section to link elsewhere.Forum: Fixing WordPress
In reply to: Featured Image – Outbound Link<ul class="portfolio"> <?php query_posts('category_name=portfolio&posts_per_page=50'); if (have_posts()) : while (have_posts()) : the_post(); // if URL else # $url = get_post_meta($post->ID, 'URL', false); $url = (isset($url[0]) ? $url[0] : '#'); $category = get_the_category(); if($category[0]->slug == 'projects') echo '<li class="default toggle" data-open="projects">'; else echo '<li class="'.$category[0]->slug.'">' ?> <a>"> <?php if(has_post_thumbnail()) the_post_thumbnail('thumbnail'); if($category[0]->slug == 'projects'){ ?> <span> <strong><?php echo get_the_title() ?></strong> <?php echo get_the_excerpt() ?> </span> <?php } else { ?> <span>on <?php echo $category[0]->cat_name?></span> <?php } ?> </a> <?php endwhile; endif; previous_comments_link(); wp_reset_query(); ?>Forum: Fixing WordPress
In reply to: Featured Image – Outbound Linkanybody got anything?