Page 56 of 75 FirstFirst ... 646545556575866 ... LastLast
Results 551 to 560 of 744
  1. #551
    Join Date
    Mar 2009
    Location
    Italy
    Posts
    155
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Sorry i solved the problem by myself... indeed it was not a big deal...

    in .../includes/function/extra_function/zx_banner.php

    line 68 to 73 find and add the red character:

    $banner_string = '<img src="' . DIR_WS_IMAGES . $banner->fields['banners_image'] . '" alt="'. $banner->fields['banners_title'].'" />';
    } else {
    if ($banner->fields['banners_open_new_windows'] == '1') {
    $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>';
    } else {
    $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>';


    Pay attention to the SPACE befor the "/"!!!

  2. #552
    Join Date
    Jun 2008
    Posts
    627
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Hi

    I've installed this mod lots of times because it's my favorite slider. It always works great. For my latest use I need to use images in portrait mode rather than landscape so we need the slider to be taller than it is wide. My first test images are 191px wide x 298px tall. The problem I am having is the images are displaying huge at roughly 576px wide x 900px. Is there a way get the images to display at normal size?

    It works fine if I use wide images(landscape).

    The zx slider admin settings used to have height and width settings but those have been removed a few versions ago.

    I have it installed on zen cart 1.5.3 with the default classic template (unmodified)

  3. #553
    Join Date
    Jun 2008
    Posts
    627
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    never mind I see what's happening. There's no way to set the width, height in zx admin settings so the slide fills the space available. I put the slider code into a fixed width div and that took care of it.

  4. #554
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,542
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    Heh, I just got here to tell you that, but I'm glad to hear you've figured it out. :)

  5. #555
    Join Date
    Feb 2014
    Location
    The Netherlands
    Posts
    58
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    Heh, I just got here to tell you that, but I'm glad to hear you've figured it out. :)
    Hi balihr, I was wondering, is there any way to determine which version of ZX Slider is installed? I have a template with an older version of ZX Slider pre-installed, but unfortunately I can't tell which version. I would like to uninstall the older version, and install the newest ZX Slider (2.1).

  6. #556
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,542
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by McLovin View Post
    Hi balihr, I was wondering, is there any way to determine which version of ZX Slider is installed?
    Yes, there's a very simple way to determine which version you're using. Take a look at the configuration options in admin. There are 3 possible situations:
    1. If you have options to set width and height, you're using version 1.0.
    2. If you don't have those options AND last config line doesn't mention slideshow version, you're using 2.0
    3. If the last line in configuration shows slideshow version, well, try guessing which version you have...

    Regards,
    Leonard

  7. #557
    Join Date
    Feb 2014
    Location
    The Netherlands
    Posts
    58
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    Yes, there's a very simple way to determine which version you're using. Take a look at the configuration options in admin. There are 3 possible situations:
    1. If you have options to set width and height, you're using version 1.0.
    2. If you don't have those options AND last config line doesn't mention slideshow version, you're using 2.0
    3. If the last line in configuration shows slideshow version, well, try guessing which version you have...

    Regards,
    Leonard
    Thank you! I'll check it immediately! =D

  8. #558
    Join Date
    Jun 2008
    Posts
    627
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Hi

    The latest version of zx slider doesn't have the captions. How can I add the caption feature back?

    thanks :-)

  9. #559
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,542
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    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

  10. #560
    Join Date
    Jun 2008
    Posts
    627
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Awesome! Thank you so much. It worked perfectly. I'm so happy to be able to add it back and also have the latest version.

 

 
Page 56 of 75 FirstFirst ... 646545556575866 ... LastLast

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3604
    Last Post: 24 Apr 2024, 10:06 AM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 AM
  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

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