• Hi everyone!

    I’m pretty new to PHP and have been struggling with a particular piece of code for the last week. I keep getting a syntax error about an unexpected }, but when ever I remove said } other errors start popping up.

    I’m using the colorway theme and I am trying to tell the slider to call a different image for each page, thus the multiple ‘if’ statements. The error in question occurs on line 49.

    Please help me out:

    <?php
    /**
     * The template for displaying all pages.
     *
     * This is the template that displays all pages by default.
     * Please note that this is the wordpress construct of pages
     * and that other 'pages' on your wordpress site will use a
     * different template.
     *
     */
    get_header();
    ?>
    
    <!--Start Slider-->
    
    <?php  if (inkthemes_get_option('colorway_home_page_slider') != 'off') { ?>
        <div class="grid_24 slider">
            <div class="slider-container">
                <div id="slides">
                    <div id="slide-box">
                        <div class="slides_container col-full slide-fix" >
                            <div class="slide slide-1" >
                                <div class="slide-content entry fl">
                                    <?php if (inkthemes_get_option('colorway_slideheading1') != '') { ?>
                                        <h2 class="title"><a>"><?php echo inkthemes_get_option('colorway_slideheading1'); ?></a></h2>
                                  <?php } else { ?>
    
                                  <?php } ?>
                                    <?php if (inkthemes_get_option('colorway_slidedescription1') != '') { ?>
                                        <p><?php echo inkthemes_get_option('colorway_slidedescription1'); ?></p>
                                    <?php } else { ?>
    
                                    <?php } ?>
                              </div>
                                <!-- /.slide-content -->
                                <?php if (inkthemes_get_option('colorway_slideimage1') != '') { ?>
                                    <div class="slide-image fl"><img  src="<?php echo inkthemes_get_option('colorway_slideimage1'); ?>" class="slide-img" alt="Slide 1"/> </div>
    
    <?php } if (is_page('Multi Meat Club') ) { ?>
                                    <div class="slide-image fl"><img  src="<?php echo get_template_directory_uri(); ?>/images/slider4.jpg" class="slide-img" alt="Slide 4"/> </div>
                           <?php } ?>
    
    <?php } if (is_page('Contact Us') ) { ?>
                                    <div class="slide-image fl"><img  src="<?php echo get_template_directory_uri(); ?>/images/slider2.jpg" class="slide-img" alt="Slide 2"/> </div>
                           <?php } ?>  
    
    <?php } if (is_page('Picking List') ) {?>
                                    <div class="slide-image fl"><img  src="<?php echo get_template_directory_uri();?>/images/slider2.jpg" class="slide-img" alt="Slide 5"/> </div>
                           <?php { ?>       
    
                                <!-- /.slide-image -->
                                <div class="fix"></div>
                            </div>
                        </div>
                        <!-- /.slides_container -->
                    </div>
                    <!-- /#slide-box -->
                </div>
                <!-- /#slides -->
            </div>
        </div>
    <?php } else {
        ?>
        <div class="heading_section"></div>
    <?php }
    ?>
    <div class="clear"></div>
    <!--End Slider-->
    
    <!--Start Content Grid-->
    <div class="grid_24 content">
        <div class="grid_16 alpha">
            <div class="content-wrap">
                <div class="content-info">
    
    <div class="content-info home">
                <center>
                    <h2>
                        <?php if (inkthemes_get_option('inkthemes_mainheading') != '') { ?>
                            <?php echo inkthemes_get_option('inkthemes_mainheading'); ?>
                        <?php } else { ?>
                            <?php _e('The Multi <font color="#FF0000">Meat</font> Club offers you quality products at affordable prices.', 'colorway'); ?>
                        <?php } ?>
                    </h2>
                </center>
            </div>
            <div class="clear"></div>
    
    				<?php if (function_exists('inkthemes_breadcrumbs')) inkthemes_breadcrumbs(); ?>
    
                </div>
                <div class="sl">
                    <?php if (have_posts()) while (have_posts()) : the_post(); ?>
                            <?php if (is_front_page()) { ?>
                                <h2>
                                    <?php the_title(); ?>
                                </h2>
                            <?php } else { ?>
                                <h1> <b> <font color="#FF0000" >
                                    <?php the_title(); ?>
             </font></b>                   </h1>
                            <?php } ?>
                            <?php the_content(); ?>
                            <div class="clear"></div>
                            <?php wp_link_pages(array('before' => '<div class="page-link"><span>' . 'Pages:' . '</span>', 'after' => '</div>')); ?>
                            <?php edit_post_link('', '', ''); ?>
                            <div class="clear"></div>
                            <!--Start Comment Section-->
    
                            <!--End comment Section-->
                        <?php endwhile; ?>
                </div>
                <div class"clear"></div>
                <div class="folio-page-info">
                    <?php inkthemes_pagination(); ?>
                </div>
            </div>
        </div>
    
    </div>
    
    <div class="clear"></div>
    <!--End Content Grid-->
    </div>
    <!--End Container Div--><!--
    <?php get_footer(); ?>

The topic ‘Syntax Error Unexpected }’ is closed to new replies.