Results 1 to 10 of 3244

Hybrid View

  1. #1
    Join Date
    Jul 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    No, since the script is part of the code you pasted, I don't think so. do you have the images uploaded where they need to be? In what folder do you have the images uploaded, and can I see a link?
    I have tested the script out on a test page which works, meaning the script works on its own.

    I have put full paths to the images, I think it's just the placement of the script that I'm having problems with.

    You can see the site here http://www.shishagenie.com

    Probably something very simple, but I can't seem to find it

  2. #2
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by mushtaq View Post
    I have tested the script out on a test page which works, meaning the script works on its own.

    I have put full paths to the images, I think it's just the placement of the script that I'm having problems with.

    You can see the site here http://www.shishagenie.com

    Probably something very simple, but I can't seem to find it
    Perhaps you changed it, but I don't see full paths to the images, I just see this:

    Code:
    leftrightslide[0]='<a href="http://"><img src="blackberry.jpg" border=1></a>'
    leftrightslide[1]='<a href="http://"><img src="rose.jpg" border=1></a>'
    leftrightslide[2]='<a href="http://"><img src="mango.jpg" border=1></a>'
    leftrightslide[3]='<a href="http://"><img src="Cherry.jpg" border=1></a>'
    leftrightslide[4]='<a href="http://"><img src="mellon.jpg" border=1></a>'
    That means the rose image would have to be here:
    http://www.shishagenie.com/rose.jpg

  3. #3
    Join Date
    Jul 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Perhaps you changed it, but I don't see full paths to the images, I just see this:

    Code:
    leftrightslide[0]='<a href="http://"><img src="blackberry.jpg" border=1></a>'
    leftrightslide[1]='<a href="http://"><img src="rose.jpg" border=1></a>'
    leftrightslide[2]='<a href="http://"><img src="mango.jpg" border=1></a>'
    leftrightslide[3]='<a href="http://"><img src="Cherry.jpg" border=1></a>'
    leftrightslide[4]='<a href="http://"><img src="mellon.jpg" border=1></a>'
    That means the rose image would have to be here:
    http://www.shishagenie.com/rose.jpg
    I changed it to test a few things out, I expected to see a broken image icon, but the script seem to execute as I have placed start and end text which displays in the correct places, but not the images.

    I copied and pasted the script on a test page http://www.shishagenie.com/test.htm which does seem to work ad shows broken image icons as expected, but it doesn't work on any of the zencart pages.

    I even placed on its own on the define_main_page.php page, but it just shows the grey box.

  4. #4
    Join Date
    Feb 2008
    Location
    Inside my head.
    Posts
    55
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by mushtaq View Post
    I changed it to test a few things out, I expected to see a broken image icon, but the script seem to execute as I have placed start and end text which displays in the correct places, but not the images.

    I copied and pasted the script on a test page http://www.shishagenie.com/test.htm which does seem to work ad shows broken image icons as expected, but it doesn't work on any of the zencart pages.

    I even placed on its own on the define_main_page.php page, but it just shows the grey box.
    Mushtaq

    Have you tried giving the full path to the image instead of the relative path?

    for instance -
    Code:
    leftrightslide[4]='<a href="http://"><img src="http://www.shishagenie.com/images/mellon.jpg" border=1></a>'
    or wherever the image is located on the server with the full URL to the image.
    </Seth>

  5. #5
    Join Date
    Jul 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by sethererm View Post
    Mushtaq

    Have you tried giving the full path to the image instead of the relative path?

    for instance -
    Code:
    leftrightslide[4]='<a href="http://"><img src="http://www.shishagenie.com/images/mellon.jpg" border=1></a>'
    or wherever the image is located on the server with the full URL to the image.
    I have done that before, but it didn't make any difference, I have changed it again now to include full path, but still no good

  6. #6
    Join Date
    Feb 2008
    Location
    Inside my head.
    Posts
    55
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by mushtaq View Post
    I have done that before, but it didn't make any difference, I have changed it again now to include full path, but still no good
    Mushtaq,

    I have implemented that script in the header of a website that I broke something else in - it works fine when you give the image path the full path to where the actual image is.

    Where I placed the code was in:
    includes/templates/MY_TEMPLATE_FOLDER/common/tpl_header.php. Then I took the code and placed it right inside the div tag: <div id="taglineWrapper"> javascript code </div>

    If you would like to see it working you can see it at: http://www.bk-clothing.com/store/

    I hope you can get it figured out!
    </Seth>

  7. #7
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    remove left/right columns on shopping cart page...

    i used this code in the tpl_main_page to remove the left/right columns from the shopping cart page, but there is still a blank space the width of the columns on the page. how do i expand the center column to fill the page?

    thanks

    Code:
    //add page names that you wantto disable left and right columns 
       $center_column_only = array('login','account',''checkout_success','checkout_shipping','checkout_payment','checkout_confirmation','shopping_cart'); 
       // the following IF statement can be duplicated/modified as needed to set additional flags 
         if (in_array($current_page_base,$center_column_only) ) { 
              $flag_disable_right = true; 
              $flag_disable_left = true; 
         }

  8. #8
    Join Date
    Jul 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by sethererm View Post
    Mushtaq

    Have you tried giving the full path to the image instead of the relative path?

    for instance -
    Code:
    leftrightslide[4]='<a href="http://"><img src="http://www.shishagenie.com/images/mellon.jpg" border=1></a>'
    or wherever the image is located on the server with the full URL to the image.
    I have put the same paths as here http://www.shishagenie.com/test.htm this page works, but just having problems adding the script to the header, any ideas where about in the page it should be inserted? I have tried moving it around on various places but same result.

  9. #9
    Join Date
    Feb 2008
    Location
    Inside my head.
    Posts
    55
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by mushtaq View Post
    I have put the same paths as here http://www.shishagenie.com/test.htm this page works, but just having problems adding the script to the header, any ideas where about in the page it should be inserted? I have tried moving it around on various places but same result.
    You would place your javascript in the includes/templates/cherry_zen/common/tpl_header.php file.

    You would then need to place the full script RIGHT after the tag <div id="taglineWrapper">. So it would look something like this:
    Code:
    <div id="taglineWrapper">
    <script type="text/javascript">
    
    /***********************************************
    * Conveyor belt slideshow script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
    ***********************************************/
    
    
    //Specify the slider's width (in pixels)
    var sliderwidth="760px"
    //Specify the slider's height
    var sliderheight="150px"
    //Specify the slider's slide speed (larger is faster 1-10)
    var slidespeed=2
    //configure background color:
    slidebgcolor="#EAEAEA"
    
    //Specify the slider's images
    var leftrightslide=new Array()
    var finalslide=''
    leftrightslide[0]='<a href="http://"><img src="http://www.shishagenie.com/images/dynamicbook1.gif" border=1></a>'
    leftrightslide[1]='<a href="http://"><img src="http://www.shishagenie.com/images/dynamicbook2.gif" border=1></a>'
    leftrightslide[2]='<a href="http://"><img src="http://www.shishagenie.com/images/dynamicbook3.gif" border=1></a>'
    leftrightslide[3]='<a href="http://"><img src="http://www.shishagenie.com/images/dynamicbook4.gif" border=1></a>'
    leftrightslide[4]='<a href="http://"><img src="http://www.shishagenie.com/images/dynamicbook5.gif" border=1></a>'
    
    //Specify gap between each image (use HTML):
    var imagegap=" "
    
    //Specify pixels gap between each slideshow rotation (use integer):
    var slideshowgap=5
    
    
    ////NO NEED TO EDIT BELOW THIS LINE////////////
    
    var copyspeed=slidespeed
    leftrightslide='<nobr>'+leftrightslide.join(imagegap)+'</nobr>'
    var iedom=document.all||document.getElementById
    if (iedom)
    document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+leftrightslide+'</span>')
    var actualwidth=''
    var cross_slide, ns_slide
    
    function fillup(){
    if (iedom){
    cross_slide=document.getElementById? document.getElementById("test2") : document.all.test2
    cross_slide2=document.getElementById? document.getElementById("test3") : document.all.test3
    cross_slide.innerHTML=cross_slide2.innerHTML=leftrightslide
    actualwidth=document.all? cross_slide.offsetWidth : document.getElementById("temp").offsetWidth
    cross_slide2.style.left=actualwidth+slideshowgap+"px"
    }
    else if (document.layers){
    ns_slide=document.ns_slidemenu.document.ns_slidemenu2
    ns_slide2=document.ns_slidemenu.document.ns_slidemenu3
    ns_slide.document.write(leftrightslide)
    ns_slide.document.close()
    actualwidth=ns_slide.document.width
    ns_slide2.left=actualwidth+slideshowgap
    ns_slide2.document.write(leftrightslide)
    ns_slide2.document.close()
    }
    lefttime=setInterval("slideleft()",30)
    }
    window.onload=fillup
    
    function slideleft(){
    if (iedom){
    if (parseInt(cross_slide.style.left)>(actualwidth*(-1)+8))
    cross_slide.style.left=parseInt(cross_slide.style.left)-copyspeed+"px"
    else
    cross_slide.style.left=parseInt(cross_slide2.style.left)+actualwidth+slideshowgap+"px"
    
    if (parseInt(cross_slide2.style.left)>(actualwidth*(-1)+8))
    cross_slide2.style.left=parseInt(cross_slide2.style.left)-copyspeed+"px"
    else
    cross_slide2.style.left=parseInt(cross_slide.style.left)+actualwidth+slideshowgap+"px"
    
    }
    else if (document.layers){
    if (ns_slide.left>(actualwidth*(-1)+8))
    ns_slide.left-=copyspeed
    else
    ns_slide.left=ns_slide2.left+actualwidth+slideshowgap
    
    if (ns_slide2.left>(actualwidth*(-1)+8))
    ns_slide2.left-=copyspeed
    else
    ns_slide2.left=ns_slide.left+actualwidth+slideshowgap
    }
    }
    
    
    if (iedom||document.layers){
    with (document){
    document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
    if (iedom){
    write('<div style="position:relative;width:'+sliderwidth+';height:'+sliderheight+';overflow:hidden">')
    write('<div style="position:absolute;width:'+sliderwidth+';height:'+sliderheight+';background-color:'+slidebgcolor+'" onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed">')
    write('<div id="test2" style="position:absolute;left:0px;top:0px"></div>')
    write('<div id="test3" style="position:absolute;left:-1000px;top:0px"></div>')
    write('</div></div>')
    }
    else if (document.layers){
    write('<ilayer width='+sliderwidth+' height='+sliderheight+' name="ns_slidemenu" bgColor='+slidebgcolor+'>')
    write('<layer name="ns_slidemenu2" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
    write('<layer name="ns_slidemenu3" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
    write('</ilayer>')
    }
    document.write('</td></table>')
    }
    }
    </script>
    <?php
                  if (HEADER_SALES_TEXT != '') {
    ?>
              <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
              <?php
                  }
    ?>
              <?php
                  if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
                    if ($banner->RecordCount() > 0) {
    ?>
              <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
              <?php
                    }
                  }
    ?>
            </div>
            <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
          </div>
    The only thing is that you need to make sure your pictures are linked to the ACTUAL location of the picture.

    Hopefully that will help some. I'll check back every once in a while to see if you have any other issues - hopefully this will answer it though.
    </Seth>

 

 

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg