Page 5 of 9 FirstFirst ... 34567 ... LastLast
Results 41 to 50 of 84
  1. #41
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: SOLVED!! - How to Place Fade Slideshow in Category (top of page)

    You would put the blank div in define_main_page.php.

  2. #42
    Join Date
    Feb 2009
    Posts
    871
    Plugin Contributions
    0

    Default Re: SOLVED!! - How to Place Fade Slideshow in Category (top of page)

    This might be a silly question, but what do you mean by a BLANK div?

  3. #43
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: SOLVED!! - How to Place Fade Slideshow in Category (top of page)

    A div without content, like
    <div id="fadeshow1"></div>

  4. #44
    Join Date
    Feb 2009
    Posts
    871
    Plugin Contributions
    0

    Default Re: SOLVED!! - How to Place Fade Slideshow in Category (top of page)

    Ok i place the file fadeslideshow.js in the modules/pages/Index folder.
    I put the <div id="fadeshow1"></div> in my define_main_page.php

    Now, the instructions were for placing the slideshow coding in the header file (html_header.php ) but i want it in the main page NOT the header.

    So where do i put it if not in the define_main_page.php?

    Since it is still not showing, i know i made a mistake somewhere or forgot something along the way.

  5. #45
    Join Date
    Aug 2010
    Posts
    22
    Plugin Contributions
    0

    Default Re: can't get Ultimate Fade-in slideshow v2.1 to work on main page

    Quote Originally Posted by frank18 View Post
    OK, here is the 'recipe' :

    Script from Dynamic Drive http://www.dynamicdrive.com/dynamici...nslideshow.htm

    Copy the content of http://www.dynamicdrive.com/dynamici...deslideshow.js
    and drop it into folder includes/modules/pages/index/

    (relative path should be includes/modules/pages/index/fadeslideshow.js)

    There is nothing to edit in this script.

    Then open includes/templates/YOUR_TEMPLATE/common/html_header.php and insert this piece of code just before the </head> tag:

    (Note: this is configured to show only on home page)

    Code:
    <?php
    if($this_is_home_page){
    ?>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" src="includes/modules/pages/index/fadeslideshow.js">
    /***********************************************
    * Ultimate Fade In Slideshow v2.0- (c) 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 this script and 100s more
    ***********************************************/
    </script>
    
    <script type="text/javascript">
    var mygallery=new fadeSlideShow({
    	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
    	dimensions: [480, 360], //width/height of gallery in pixels. Should reflect dimensions of largest image
    	imagearray: [
    		["includes/modules/pages/index/images/image11.jpg", "index.php?main_page=index&cPath=11", "", "Beach Bags"],
    		["includes/modules/pages/index/images/image3.jpg", "index.php?main_page=index&cPath=3", "", "Beach Wear"],
    		["includes/modules/pages/index/images/image10.jpg", "index.php?main_page=index&cPath=10", "", "Cover Ups"],
    		["includes/modules/pages/index/images/image9.jpg", "index.php?main_page=index&cPath=9", "", "Kaftans"],
    		["includes/modules/pages/index/images/image7.jpg", "index.php?main_page=index&cPath=7", "", "Ladies Apparel"],
    		["includes/modules/pages/index/images/image1.jpg", "index.php?main_page=index&cPath=1", "", "Sarongs and Wraps"] //<--no trailing comma after very last image element!
    	],
    	displaymode: {type:'auto', pause:4000, cycles:0, wraparound:false},
    	persist: false, //remember last viewed slide and recall within same session?
    	fadeduration: 1000, //transition duration (milliseconds)
    	descreveal: "ondemand",
    	togglerid: ""
    })
    </script>
    <?php
    }
    ?>
    Edit dimensions, displaymode, fadeduration to suit your needs. Place your images into folder includes/modules/pages/index/images/ and name them accordingly.

    Enter your links as relative paths. In the above example clicking on image11.jpg takes you to category 11 (in my case 'Beach Bags').

    Now in includes/languages/english/html_includes/YOUR_TEMPLATE/define_main_page.php (accessed in admin via Define Pages Editor in admin) place this empty div somewhere in the page;

    <div id="fadeshow1"></div>

    That's it - save and enjoy!

    If I have missed something please post it here to let me know (no PM please...)

    Frank
    I followed these steps and it's not working for me. Is there anything else on the main_page besides the <div fade...>?

  6. #46
    Join Date
    Aug 2010
    Posts
    22
    Plugin Contributions
    0

    Default Re: can't get Ultimate Fade-in slideshow v2.1 to work on main page

    Quote Originally Posted by authentic01 View Post
    I followed these steps and it's not working for me. Is there anything else on the main_page besides the <div fade...>?
    I also took out the second part after images because I wasn't referencing any categories.

  7. #47
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: can't get Ultimate Fade-in slideshow v2.1 to work on main page

    Do you mean instead of e.g.
    ["includes/modules/pages/index/images/image1.jpg", "index.php?main_page=index&cPath=1", "", "Sarongs and Wraps"]
    you used
    ["includes/modules/pages/index/images/image1.jpg", "", "", "Sarongs and Wraps"]
    ?

    This would just remove any linking, making a plain image. It is perfectly correct usage.

  8. #48
    Join Date
    Feb 2009
    Posts
    871
    Plugin Contributions
    0

    Default Re: can't get Ultimate Fade-in slideshow v2.1 to work on main page

    Could you correct the recipe for the newer version of the Dynamic fadein slideshow?

    1- download the file fadeslideshow.js
    2- save it into the folder includes/modules/pages/index
    3- create the slideshow according to the instruction on the page here (with the images and with or without links)
    4- save that slideshow as jscript_myfadeshow.php
    5- place it in the folder includes/templates/MYTEMPLATE/common/
    6- in admin-Define Pages Editor, input the code: <div id="fadeshow1"></div> into
    define_main_page.php, and save it

    At least, that is what i did, and it is not working so i assume the recipe is not correct.
    Here is the page (the body of the page, NOT the header which has a gif image temporarily) where i expect the slideshow to appear.
    test store

  9. #49
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: can't get Ultimate Fade-in slideshow v2.1 to work on main page

    1- download the file fadeslideshow.js
    2- save it into the folder includes/modules/pages/index as jscript_fadeslideshow.js
    2a- may need to change internal file references from original filenames to jscript_ filenames


    I am not expert with this, but this is my reading of it.

  10. #50
    Join Date
    Feb 2009
    Posts
    871
    Plugin Contributions
    0

    Default Re: can't get Ultimate Fade-in slideshow v2.1 to work on main page

    Which file to edit? the jscript_fadeslideshow.js ?

    I opened that file, and that is giberish to me. If anyone can feel comfortable enough to give us the recipe for that type of edition, it might be useful.

    Anyone got that working on the main page yet?
    Last edited by CaroleAs; 16 Nov 2010 at 04:14 AM.

 

 
Page 5 of 9 FirstFirst ... 34567 ... LastLast

Similar Threads

  1. Ultimate Fade-In Slideshow
    By Finna in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 5 Sep 2011, 12:31 PM
  2. Ultimate Fade In Slideshow Problem
    By top hatt in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 21 Aug 2011, 11:54 PM
  3. Trouble with Ultimate Fade In Slideshow
    By top hatt in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 9 May 2011, 05:02 PM
  4. How can I use Ultimate Fade-in slideshow v2.1 ?
    By Crunch in forum All Other Contributions/Addons
    Replies: 8
    Last Post: 4 Feb 2010, 03:21 AM
  5. Ultimate Fade-in slideshow in ezpage
    By perkiekat in forum General Questions
    Replies: 5
    Last Post: 27 Dec 2009, 11:47 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR