Page 16 of 16 FirstFirst ... 6141516
Results 151 to 159 of 159
  1. #151
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Ultimate Fade-In Slidehow Support thread

    PHP Code:
    if (!in_array
    This says "if not in array..."
    From the pagenames, it would seem you would want to hide the banner for the listed pages, so you would use
    PHP Code:
    if (in_array
    without the !

  2. #152
    Join Date
    Feb 2010
    Posts
    237
    Plugin Contributions
    0

    Default Re: Ultimate Fade-In Slidehow Support thread

    Glenn:

    That's what I thought but when it didn't work I started to second guess myself. I don't know enough to have confidence in my code.

    Anyway, removing the exclamation point may have fixed that part of the statement but it still does not work. I'm guessing that I am not calling out the banner correctly. I have tried banner, banners, bannerThree, and Wide-Banners all to no avail.

    I would appreciate if you could guide me a little bit more.

    My site is http://poolcuesexpress.com/testsite

    Dave

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

    Default Re: Ultimate Fade-In Slidehow Support thread

    I'm not familiar with banner function and coding, as I don't use them. Someone who has experience with them could probably answer better on this.

  4. #154
    Join Date
    Feb 2010
    Posts
    237
    Plugin Contributions
    0

    Default Re: Ultimate Fade-In Slidehow Support thread

    Glenn:

    Thanks for your help.

    Dave

  5. #155
    Join Date
    Jun 2013
    Location
    Sydney
    Posts
    25
    Plugin Contributions
    0

    Default Re: Ultimate Fade-In Slidehow Support thread

    Hi,

    I have installed 2.4.1 and worked through the installation but nothing appears. Can anyone see where I am going wrong -

    http://veganmealsdelivered.com.au/demo

    Thanks

  6. #156
    Join Date
    Jun 2013
    Location
    Sydney
    Posts
    25
    Plugin Contributions
    0

    Default Re: Ultimate Fade-In Slidehow Support thread

    Cancel that, went through it again from scratch and works now. Is good :)

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

    Default Re: Ultimate Fade-In Slidehow Support thread

    Glad it's working now:) I didn't see anything obvious when I looked at it.

  8. #158
    Join Date
    Feb 2010
    Posts
    237
    Plugin Contributions
    0

    Default Re: Ultimate Fade-In Slidehow Support thread

    OK. I could use a guiding hand again.

    I want to have a separate slideshow for each of my main categories. I got it figured out to get the same slideshow to appear in the main categories, but when I try to copy the code in includes/templates/my template/jscript/jscript_fadeshow_setup.php to create a new slideshow in one of the main category pages and insert the new div I get the following:

    Error: DIV with ID fadeshow_ not found on page.

    Here is the code I have been playing around with.


    <?php

    if($category_parent) {// set any desired condition for each slideshow}

    ?>

    <?php
    /*
    if ($this_is_home_page) {$flag_disable_fadeshow2= true;//set any desired condition for each fadeshow}
    */
    ?>

    <?php
    /*
    *if (!in_array($current_page_base,explode(",",'main_page,Pool_Cues,shopping_cart,log in,checkout,fec_confirmation,checkout_success')) ) {
    * $flag_disable_fadeshow1= true;}
    */
    ?>

    <script type="text/javascript">
    /* Ultimate Fade-in slideshow (v2.4)
    * Last updated: May 24th, 2010. This notice must stay intact for usage
    * Author: Dynamic Drive at http://www.dynamicdrive.com/
    * Visit http://www.dynamicdrive.com/ for full source code
    */

    /*
    This content is intended to be user-modified; it simply invokes the Dynamic Drive code.
    Change any parameters to fit your display needs.
    */

    var mygallery=new fadeSlideShow({
    wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
    dimensions: [750, 30], //width/height of gallery in pixels. Should reflect dimensions of largest image
    imagearray: [
    ["/images/slideshow/slide1.jpg", "/index.php?main_page=page&id=4", "", ""],
    ["/images/slideshow/slide2.jpg", "/index.php?main_page=page&id=4", "", ""],
    ["/images/slideshow/slide3.jpg", "/index.php?main_page=page&id=7", "", ""],
    ["/images/slideshow/slide4.jpg", "", "", ""] //<--no trailing comma after very last image element!
    ],
    displaymode: {type:'auto', pause:3000, cycles:0, wraparound:false, randomize:false},
    persist: false, //remember last viewed slide and recall within same session?
    fadeduration: 500, //transition duration (milliseconds)
    descreveal: "ondemand",
    togglerid: ""
    })
    </script>
    <?php }?>

    <?php

    if($category_parent) {// set any desired condition for each slideshow}

    ?>

    <?php
    /*
    *if ($this_is_home_page) {$flag_disable_fadeshow2= true;//set any desired condition for each fadeshow}
    */
    ?>

    <?php
    /*
    *if (!in_array($current_page_base,explode(",",'main_page,Pool_Cues,shopping_cart,log in,checkout,fec_confirmation,checkout_success')) ) {
    * $flag_disable_fadeshow1= true;}
    */
    ?>



    <script type="text/javascript">
    /* Ultimate Fade-in slideshow (v2.4)
    * Last updated: May 24th, 2010. This notice must stay intact for usage
    * Author: Dynamic Drive at http://www.dynamicdrive.com/
    * Visit http://www.dynamicdrive.com/ for full source code
    */

    /*
    This content is intended to be user-modified; it simply invokes the Dynamic Drive code.
    Change any parameters to fit your display needs.
    */

    var mygallery=new fadeSlideShow({
    wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
    dimensions: [750, 30], //width/height of gallery in pixels. Should reflect dimensions of largest image
    imagearray: [
    ["/images/slideshow/slide1.jpg", "/index.php?main_page=page&id=4", "", ""],
    ["/images/slideshow/slide2.jpg", "/index.php?main_page=page&id=4", "", ""],
    ["/images/slideshow/slide3.jpg", "/index.php?main_page=page&id=7", "", ""],
    ["/images/slideshow/slide4.jpg", "", "", ""] //<--no trailing comma after very last image element!
    ],
    displaymode: {type:'auto', pause:3000, cycles:0, wraparound:false, randomize:false},
    persist: false, //remember last viewed slide and recall within same session?
    fadeduration: 500, //transition duration (milliseconds)
    descreveal: "ondemand",
    togglerid: ""
    })
    </script>
    <?php }?>

    Any help would be appreciated.

    Dave

  9. #159
    Join Date
    May 2008
    Location
    Amarillo, TX
    Posts
    40
    Plugin Contributions
    0

    Default Re: Ultimate Fade-In Slidehow Support thread

    Hi, I am currently working on a development site that is hosted on my computer. I want to put the ultimate fade-in slideshow or something similar in the header area directly behind the company logo. Does anyone know if this can be accomplished? I believe I was able to do this once before, but it was years ago and I don't recall how I did it.

    If it can be done, what file do I edit, what code should I use and where exactly should I put it? Also it has to be responsive. I tested out version 2.6.1 which is supposed to be responsive on the home page and it seems to work fine. Normally this code gets pasted on the page where you want the slideshow to show, but how do I get it work correctly in the header?

    Thanks in advance for your any help you can give.

 

 
Page 16 of 16 FirstFirst ... 6141516

Similar Threads

  1. v150 Ultimate SEO v3 (and v2.200) [Support Thread]
    By lhungil in forum All Other Contributions/Addons
    Replies: 1621
    Last Post: 30 Oct 2023, 06:15 PM
  2. Ultimate Cross Sell [Support Thread]
    By ultimate_zc in forum All Other Contributions/Addons
    Replies: 239
    Last Post: 17 May 2015, 03:25 AM
  3. Ultimate Content Glider [Support Thread]
    By ultimate_zc in forum All Other Contributions/Addons
    Replies: 11
    Last Post: 4 Sep 2012, 05:16 AM
  4. Ultimate Fade-In Slidehow help
    By discoverytdi in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 25 Oct 2011, 01:50 PM
  5. Ultimate Fade-In Slideshow
    By Finna in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 5 Sep 2011, 12:31 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