Page 199 of 373 FirstFirst ... 99149189197198199200201209249299 ... LastLast
Results 1,981 to 1,990 of 3726
  1. #1981
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Zen Lightbox...

    Quote Originally Posted by davewest View Post
    The script file in Link Manager sidebox call 'function resize()' which conflicts with Mootools, thus the error. Should be a walk around for this.... but I'm off to the SQF to make maps for a fire team....
    After a second look, this was for the popup help window which I do use without any problems. I didn't see anything else that would course problems.
    Dave
    Always forward thinking... Lost my mind!

  2. #1982
    Join Date
    Feb 2010
    Location
    Tucson, AZ
    Posts
    16
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Thank you for the "less than elegant" solution. I have already posted to the Link Manager thread, but the creator has never responded with a fix/workaround (that I can see). Actually, several people have posted the same symptom on the Link Manager thread and received similar responses. Real bummer I can't get both to work as they are designed, as the Link Manager sidebox allows you to have additional "categories" for affiliates related to what is being sold on your site.

  3. #1983
    Join Date
    Feb 2010
    Location
    Tucson, AZ
    Posts
    16
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    You can see Link Manager in action at the creator's demo site:

    http://clydedesigns.com/index.php?main_page=links

  4. #1984
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Zen Lightbox...

    Quote Originally Posted by johnchazz View Post
    Thank you for the "less than elegant" solution. ........ Real bummer I can't get both to work as they are designed, as the Link Manager sidebox allows you to have additional "categories" for affiliates related to what is being sold on your site.
    I dubbed my fix "less than elegant" for exactly the reason you are stating.

    Let's wait and see what the creators are coming up with. It is a rare occurrence though that 2 different contributions are having an unintended crack at each other

  5. #1985
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Zen Lightbox...

    Quote Originally Posted by davewest View Post

    The script file in Link Manager sidebox call 'function resize()' which conflicts with Mootools, thus the error. Should be a walk around for this.... but I'm off to the SQF to make maps for a fire team....
    Can you show me where this function is being called.

    Here is the code for the links manager sidebox. (includes/modules/sideboxes/links_box.php
    PHP Code:
    <?php
    /**
     * Links Box
     *
     * @package templateSystem
     * @copyright Copyright 2003-2005 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_links_submit_default.php 3.5.3 4/16/2010 Clyde Jones $
     */
      
    $links_query= ("select lc.link_categories_id, lc.link_categories_sort_order, lcd.link_categories_id, lcd.link_categories_name from " TABLE_LINK_CATEGORIES " lc, " TABLE_LINK_CATEGORIES_DESCRIPTION " lcd where lc.link_categories_status = '1' and lc.link_categories_id = lcd.link_categories_id and lcd.language_id = '" . (int)$_SESSION['languages_id'] . "' order by lc.link_categories_sort_order, lcd.link_categories_name");
      
    $links $db->Execute($links_query);
      if (
    $links->RecordCount()>0) {
        
    $number_of_rows $links->RecordCount()+1;
        
    $links_array = array();
        if (
    $_GET['link_categories_id'] == '' ) {
        } else {
          
    $links_array[] = array('id' => '''text' => PULL_DOWN_LINKS_MANAGER);
        }
        while (!
    $links->EOF) {
          
    $link_categories_name = ((strlen($links->fields['link_categories_name']) > MAX_DISPLAY_LINK_NAME_LEN) ? substr($links->fields['link_categories_name'], 0MAX_DISPLAY_LINK_NAME_LEN) . '..' $links->fields['link_categories_name']);
          
    $links_array[] = array('id' => $links->fields['link_categories_id'],
                                           
    'text' => $link_categories_name);
          
    $links->MoveNext();
        }
          require(
    $template->get_template_dir('tpl_links_select.php',DIR_WS_TEMPLATE$current_page_base,'sideboxes'). '/tpl_links_select.php');
        
    $title =  BOX_HEADING_LINK_CATEGORIES;
        
    $left_corner false;
        
    $right_corner false;
        
    $right_arrow false;
        
    $title_link false;
        require(
    $template->get_template_dir($column_box_defaultDIR_WS_TEMPLATE$current_page_base,'common') . '/' $column_box_default);
      }
    //EOF
    AND includes/templates/template_default/sideboxes/tpl_links_select.php

    PHP Code:
    <?php
    /**
     * Links Select Sidebox Template
     *
     * @package templateSystem
     * @copyright Copyright 2003-2005 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_links_submit_default.php 3.5.3 4/16/2010 Clyde Jones $
     */
      
    $content "";
      
    $content .= '<div id="' str_replace('_''-'$box_id 'Content') . '" class="sideBoxContent">';

      
    $content.= zen_draw_form('links'zen_href_link(FILENAME_LINKS'''NONSSL'false), 'get');
      
    $content .= zen_draw_pull_down_menu('lPath'$links_array, (isset($_GET['lPath']) ? $_GET['lPath'] : ''), 'onchange="this.form.submit();" size="' MAX_LINKS_LIST '" style="width: 90%; margin: auto;"') . zen_hide_session_id();
      
    $content .= zen_draw_hidden_field('main_page'FILENAME_LINKS) . '</form>';

      if (
    BOX_DISPLAY_VIEW_ALL_LINKS == 'true') {
      
    $content .= '<br /><a href="' zen_href_link(FILENAME_LINKS'''NONSSL') . '">' BOX_INFORMATION_VIEW_ALL_LINKS '</a>';
    }

       if (
    BOX_DISPLAY_SUBMIT_LINK == 'true') {
      
    $content .= '<br /><a href="' zen_href_link(FILENAME_LINKS_SUBMIT'''SSL') . '">' BOX_INFORMATION_LINKS_SUBMIT '</a>';
    }
      
    $content .= '</div>';
    //EOF

  6. #1986
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Zen Lightbox...


  7. #1987
    Join Date
    Mar 2009
    Location
    Serbia
    Posts
    349
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Hi, ZC user,
    How to configure the Zen Lightbox to show images in the full size when somebody click on the smaller picture?

  8. #1988
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Zen Lightbox...

    You just need to follow the install instructions contained in the package.

  9. #1989
    Join Date
    Mar 2009
    Location
    Serbia
    Posts
    349
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    I correctly install a Zen Lightbox, byt I can't configure to show my images in try size! Hay to do thet???

  10. #1990
    Join Date
    May 2009
    Posts
    22
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Hi

    Has anyone used zen lightbox to display attribute images - they are currently displayed in a pop up box ? LB works nicely with main image and additional product images but we want to display attribute images (colour variants of main product) - I'm guessing that its a coding change to remove the call to display the popup box and replace with the LB - any clues?

 

 

Similar Threads

  1. Free Shipping Rules addon [Support Thread]
    By numinix in forum Addon Shipping Modules
    Replies: 36
    Last Post: 2 Dec 2016, 01:56 PM
  2. v151 Reviews Reply addon [Support Thread]
    By mikestaps in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 17 Oct 2014, 01:29 AM
  3. Jquery Lightbox [Support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 257
    Last Post: 2 Aug 2012, 10:57 PM
  4. File Upload Required addon [Support Thread]
    By 1100101 in forum All Other Contributions/Addons
    Replies: 21
    Last Post: 10 Dec 2011, 03:00 AM
  5. [Support Thread] IE only JavaScripts and Stylesheets Addon
    By Meshach in forum All Other Contributions/Addons
    Replies: 16
    Last Post: 31 May 2011, 08:18 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