slideshow

I would like to know how I could display the slidesow on the home page just above the product items on the right hand side instead of the slideshow position. Is this possible?
Attachment 23309Attachment 23309

Thank you

Mike

1 answer

Profile photo of Saguaros 0.00 $tone September 11, 2012
Public

Greetings Mike,

You could do that with following way:

-- Open template file: \app\design\frontend\default\jm_celastemplate\pag e\2columns-left.phtml. This file depends on which layout you’re assigning to the home page in CMS > Pages > Home Page > Design > Layout so that it can be one of 2columns-right.phtml, 1column.phtml or 3columns.phtml. As I can see in attached image, I guess you’re using 2columns-left.phtml

-- Move code display slideshow:

PHP Code:

<?php if ($this->getChildHtml('slideshow')) : ?>
    <!-- JM SlideShow -->
        <div id="ja-slideshow" class="wrap"><div class="wrap1">
        <div class="main clearfix">
        <?php echo $this->getChildHtml('slideshow'?>
        </div>
            </div></div>
        <!--[if IE 7]>
        <br class="clear" />
        <![endif]-->
        <!-- //JM SlideShow -->
<?php endif; ?>


into ja-current-content div, it should be like this:

PHP Code:

<div id="ja-contentwrap" class="clearfix ja-li">
    <!-- CONTENT -->
    <div id="ja-content" class="column">
        <div id="ja-current-content" class="column">
            <?php if ($this->getChildHtml('slideshow')) : ?>
            <!-- JM SlideShow -->
            <div id="ja-slideshow" class="wrap"><div class="wrap1">
            <div class="main clearfix">
            <?php echo $this->getChildHtml('slideshow'?>
            </div>
            </div></div>
            <!--[if IE 7]>
            <br class="clear" />
            <![endif]-->
            <!-- //JM SlideShow -->
            <?php endif; ?>
<!-- global messages -->
<?php echo $this->getChildHtml('global_messages'?>
<!-- // global messages -->
<div id="ja-content-top" class="clearfix">


Once done, flush all the cache and refresh your site.

Regards.

#1

Please login or Register to Submit Answer

Written By

Comments