Results 1 to 10 of 767

Hybrid View

  1. #1
    Join Date
    Dec 2008
    Location
    Hanover Township PA, USA
    Posts
    122
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    No, it doesn't display captions - I removed it because most people didn't want it and it can no longer be disabled from the admin (the new version of Nivo Slider controls it only from CSS, no more control from javascript).

    If you want to enable captions, edit includes/functions/extra_functions/zx_banner.php
    Find line 68:
    Code:
    $banner_string = '<img src="' . DIR_WS_IMAGES . $banner->fields['banners_image'] . '" alt="'. $banner->fields['banners_title'].'">';
    and replace with
    Code:
    $banner_string = '<img src="' . DIR_WS_IMAGES . $banner->fields['banners_image'] . '" alt="'. $banner->fields['banners_title'].'" title="'. $banner->fields['banners_title'].'">';
    Find line 71:
    Code:
    $banner_string = '<a href="' . zen_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner->fields['banners_id']) . '" target="_blank">' . '<img src="' . DIR_WS_IMAGES . $banner->fields['banners_image'] . '" alt="'. $banner->fields['banners_title'].'"></a>';
    and replace with
    Code:
    $banner_string = '<a href="' . zen_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner->fields['banners_id']) . '" target="_blank">' . '<img src="' . DIR_WS_IMAGES . $banner->fields['banners_image'] . '" alt="'. $banner->fields['banners_title'].'" title="'. $banner->fields['banners_title'].'" ></a>';
    Find line 73:
    Code:
    $banner_string = '<a href="' . zen_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner->fields['banners_id']) . '">' . '<img src="' . DIR_WS_IMAGES . $banner->fields['banners_image'] . '" alt="'. $banner->fields['banners_title'].'"></a>';
    and replace with
    Code:
    $banner_string = '<a href="' . zen_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner->fields['banners_id']) . '">' . '<img src="' . DIR_WS_IMAGES . $banner->fields['banners_image'] . '" alt="'. $banner->fields['banners_title'].'" title="'. $banner->fields['banners_title'].'"></a>';
    You might need to play with CSS after doing this.

    Regards,
    Leonard
    Using 1.5.5a Responsive Classic... THANK YOU!!!

    I wanted and needed those captions to advertise sales on the slide show. Would never have figured it out myself.

    Thanks again,
    Danny
    Daniel Osko

  2. #2
    Join Date
    Apr 2009
    Posts
    60
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    I am just setting up Zen cart version 1.5.5e

    I installed the ZX Slideshow so easy LOVE it!

    I have it in the responsive_classic template, I would like to make the slider 100% across the home page. Tried this and it didn't work. Can someone help me on this.

    www.uesakausa.com

    Thanks!

    .theme-default .nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
    width: 100% !important; /* Max added width and height */
    height: auto;
    }

  3. #3
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,741
    Plugin Contributions
    22

    Default Re: ZX Slideshow official thread

    Glad to hear you like it.

    You'll need to make a few edits if you want to have it full width. Since it seems you want to have it directly below the header, without any content in between, probably simplest solution would be to move the code from tpl_index_default.php to the bottom of your tpl_header.php
    So, just edit your includes/templates/maxtemp/templates/tpl_index_default.php and cut out the code for ZX Slideshow (commented) and paste that code in includes/templates/maxtemp/common/tpl_header.php just before the last </div> line. The end result should look something like:
    Code:
    <!--bof optional categories tabs navigation display-->
    <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
    <!--eof optional categories tabs navigation display-->
    
    <!--bof header ezpage links-->
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
    <?php   require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php } ?>
    <!--eof header ezpage links-->
    
    <!-- begin edit for ZX Slideshow -->
    <?php if(ZX_SLIDESHOW_STATUS == 'true') { ?>
    	<?php require($template->get_template_dir('zx_slideshow.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/zx_slideshow.php'); ?>
    <?php } ?>    
    <!-- end edit for ZX Slideshow -->
    
    </div>
    
    <?php } ?>
    Of course, don't forget to undo the changes you just made in the CSS file. Enjoy!

  4. #4
    Join Date
    Apr 2009
    Posts
    60
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Thanks balihr for the quick response.

    Before I move this, maybe I am taking the wrong approach. My goal is to have the entire main page at 100%. Is there a solution where I can make the entire center section 100% and leave the ZX Slider in that main container?

    Thank you in advance!

  5. #5
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,741
    Plugin Contributions
    22

    Default Re: ZX Slideshow official thread

    This question would be more suitable in the template's thread (here) since you want to modify the template...

    I'm not very familiar with that template (I don't like it at all) but this would be a start: edit includes/templates/maxtemp/css/stylesheet.css and on line 55 simply remove the width entry (or change to 100). This is just a start as it won't give you full width just yet, but that's because of the two side columns that are loading for sideboxes (although you haven't enabled any). You could try to turn of the sidebox columns (configuration->Layout Settings->Column Left Status - Global -> 0) and see if it helps. Don't forget the right one.
    There are other, slightly more advanced, solutions available as well, but again, it should be discussed in the template's thread so we don't go OT here.

    BTW, since you're doing a brand new site, why are you not using the latest version of Zen Cart?

  6. #6
    Join Date
    Apr 2009
    Posts
    60
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Again Thank you for the fast response!!!! GREAT SUPPORT if anyone wants to install ZX Slideshow! I have used Nivo slider outside of a Zen cart and this makes it very easy to install. Highly recommended plug in!

    For others reading this thread, I applied these two steps, which expanded the ZX Slider to fit within the center but still retained the default 150 px sides until I went into Configuration->Layout Settings -> Column width - Left Boxes and Right Boxes and also set to 0.

    This gave me the 100% center and the ZX fitting across the span. I have Installatron on my server, which is supposed to update it to the most current versions, but I have had to contact them in the past. Guess another email in in order :)

    Thank you for the thread link too!

  7. #7
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,532
    Plugin Contributions
    127

    Default Re: ZX Slideshow official thread

    Works like a champ with Responsive Classic - thank you! As a small suggestion, perhaps the banner title should not be required (perhaps a random one could be added, for example.)
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  8. #8
    Join Date
    Apr 2009
    Posts
    60
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Hi, as i said LOVE the ZX, but my client wants a different design. How do I go about uninstalling it? I deleted all the banners, but I still have empty divs classes like slider-wrapper and nivoSlider in my code.

    Thanks,

    Max

 

 

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 22
    Last Post: 26 Jan 2026, 06:47 AM
  2. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3672
    Last Post: 11 Sep 2025, 05:07 PM
  3. goMobile Support Thread
    By steveyork136 in forum Addon Templates
    Replies: 29
    Last Post: 26 Aug 2015, 11:56 AM
  4. Frontpage Slideshow [support thread]
    By sport_billy in forum All Other Contributions/Addons
    Replies: 108
    Last Post: 10 Jul 2014, 12:41 PM
  5. SnapShot [support thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 32
    Last Post: 26 Oct 2012, 08:38 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