Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter fdneal

    (@fdneal)

    I 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”>.

    My pleasure! Glad I could help out. Thank YOU, AJ, for this terrific theme!

    Hello, 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!~

Viewing 3 replies - 1 through 3 (of 3 total)