fdneal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pinboard] How to show featured image on post pageI got it! If you add array(width, height) in the risght spot, it works! Example:
<?php if ( has_post_thumbnail() ):?>
<div class=”featured-image-wrap”><?php the_post_thumbnail(array(650,276); ?></div>
<?php endif; ?>That code should go right after <header class=”entry-header”>.
Forum: Fixing WordPress
In reply to: Linking Slide to the URLMy pleasure! Glad I could help out. Thank YOU, AJ, for this terrific theme!
Forum: Fixing WordPress
In reply to: Linking Slide to the URLHello, all! I was having the same problem with the free adapt theme, and I found that changing a couple of lines in the “Slides.php” file fixed it:
// $slidelink = get_post_meta($post->ID, 'adapt_slides_url', TRUE); $slidelink = get_post_meta($post->ID, 'wpe_knowledge_slides_url', TRUE); // $slide_description = get_post_meta($post->ID, 'adapt_slides_description', TRUE); $slide_description = get_post_meta($post->ID, 'wpe_knowledge_slides_description', TRUE);I included the original (commented out) code, and the slightly tweaked code. Seems the variable was being fed the wrong values.
I found the right values by studying the html source of the slide posting page.Anyhow, it worked for me, your mileage may vary…
~Dave!~