Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter sheigha

    (@sheigha)

    Yeah, Stefan! That’s it!!! Really great! Appreciate your help very much guys. Hard for a beginner to get stuff like this fixed… Will check finetuning the next days and get this thing going. You made my day! 🙂

    Thread Starter sheigha

    (@sheigha)

    Update: If I add the <?php get_footer(); ?> to the portfolio php, the slideshow shows up, but just as a thumbnail. Could it be that the parameters in the stylesheet avoid a larger display?

    Thread Starter sheigha

    (@sheigha)

    thanks guys. I checked with the standard theme and it worked. Then I switched back to my theme and tried the slideshow in a posting and it worked. The problem seems to be that I want to have the slideshow on a “portfolio”-page, which seems to be a feature that is only used in the portfolium theme. Any idea, if I could use any code to get this “portfolio”-page, which is quite similar to a normal page, get the slideshow loaded?
    @stefan: The index calls the footer correctly…

    this is the single portfolio script:

    <?php get_header(); ?>
    <?php if ( have_posts() ) : ?>
        <?php while ( have_posts() ) : the_post(); ?>
    
        <div class="container clear">
            <div class="content">
                <div id="show">
                    <?php
                        $args = array(
                            'post_type' => 'attachment',
                            'orderby' => 'menu_order',
                            'order' => ASC,
                            'numberposts' => -1,
                            'post_status' => null,
                            'post_parent' => $post->ID,
                            'exclude' => get_post_thumbnail_id()
                        );
                        $attachments = get_posts($args);
                        if ( $attachments ):
                            foreach ( $attachments as $attachment ):
                                echo wp_get_attachment_image($attachment->ID, 'full');
                            endforeach;
                        endif;
                    ?>
                </div>
            </div>
            <div class="l_col">
                <div class="post_portfolio">
                    <p class="post_divider">—</p>
                    <div class="post_text"><?php the_content(); ?></div>
                </div>
            </div>
        </div>
    
        <?php endwhile;?>
    <?php endif; ?>
    
    <div class="recent clear">
        <h3>Portfolio</h3>
        <?php
            $term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
            query_posts(
                array(
                    'post_type' => 'portfolio',
                    'works' => $term->slug,
                    'posts_per_page' => 10,
                    'post__not_in' => array($post->ID)
                )
            );
        ?>
        <?php get_template_part('loop-portfolio');  // Loop template for portfolio (loop-portfolio.php) ?>
        <?php  wp_reset_query(); ?>
    </div>


    [Please ALWAYS use the code buttons to post code on the forums]

    Thread Starter sheigha

    (@sheigha)

    Hi Ryan,

    Thanks for having a look. Yeah, that’s the same I see. But the text in the visual editor says: [slideshow_deploy id=’1560′]
    And I uploaded a slideshow with this parameter. Any idea?
    Here’s the link again: http://shootingcandid.com/?portfolio=test-4

    Thanks a lot!

    Fabian

    Thread Starter sheigha

    (@sheigha)

    Thank you very much for your fast and helpful response! As you see, it works: http://shootingcandid.com/?portfolio=test Though the gap is still a bit huge between the categories and the slideshow. Thanks again!

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