Thread: Zen Colorbox

Page 9 of 34 FirstFirst ... 789101119 ... LastLast
Results 81 to 90 of 337
  1. #81
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Zen Colorbox

    Quote Originally Posted by stiggybaby View Post
    I've put off installing lightbox or colorbox, but now need to do it, and have since upgraded to 1.5.3, so...

    Is Colorbox 1.5.3 compatible? (either officially, unofficially, or *should be*)
    Dunno.. haven't tested.. you can install, test, and report back
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #82
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Zen Colorbox

    Quote Originally Posted by DarkAngel View Post
    excellent question. I have been asked by some viewers if the nex and previous buttons at the top are not working...the little ones at the bottom are not easily seen and I do not have it set to do the slideshow thing.
    Why not... just a matter of editing the css and changing the images... not my code or idea, just modified the existing css ... sample 3 from the colorbox site. it's the way I changed my site to... I couldn't see the small buttons.

    Oh... colorbox works on 1.5.3 too...
    Attached Images Attached Images  
    Attached Files Attached Files
    Dave
    Always forward thinking... Lost my mind!

  3. #83
    Join Date
    Apr 2011
    Posts
    91
    Plugin Contributions
    0

    Default Re: Zen Colorbox

    Quote Originally Posted by davewest View Post
    Oh... colorbox works on 1.5.3 too...
    I need a bit of help please. I am installing the colorbox plugin, and I already have the jscript_jquery.min.php file in my template (avonlee contempo). I don't understand about merging these or if one should replace the other:

    colorbox:
    <script type="text/javascript">
    if (typeof jQuery == 'undefined') {
    document.write(unescape("%3Cscript src='//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
    }
    </script>

    avonlee:
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
    <script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.easing.1.3.js' ?>" type="text/javascript"></script>
    Zen Cart 1.5.3, Database Patch Level: 1.5.3
    Server OS: Linux 2.6.32, Database: MySQL 5.5.41
    HTTP Server: Apache, PHP Version: 5.4.37

  4. #84
    Join Date
    Apr 2011
    Posts
    91
    Plugin Contributions
    0

    Default Re: Zen Colorbox

    also, I cannot find anything on in this support thread nor readme about what to do (if anything) with the files in 2_support_files/assets/
    Zen Cart 1.5.3, Database Patch Level: 1.5.3
    Server OS: Linux 2.6.32, Database: MySQL 5.5.41
    HTTP Server: Apache, PHP Version: 5.4.37

  5. #85
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Zen Colorbox

    Quote Originally Posted by stiggybaby View Post
    I need a bit of help please. I am installing the colorbox plugin, and I already have the jscript_jquery.min.php file in my template (avonlee contempo). I don't understand about merging these or if one should replace the other:

    colorbox:
    <script type="text/javascript">
    if (typeof jQuery == 'undefined') {
    document.write(unescape("%3Cscript src='//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
    }
    </script>

    avonlee:
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
    <script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.easing.1.3.js' ?>" type="text/javascript"></script>
    You would keep whichever file is the MOST RECENT VERSION.. Highlighted so YOU can SEE which one is the most RECENT version..

    Quote Originally Posted by stiggybaby View Post
    also, I cannot find anything on in this support thread nor readme about what to do (if anything) with the files in 2_support_files/assets/
    Nothing.. (which is why it's not mentioned in the readme..)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  6. #86
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Zen Colorbox

    Quote Originally Posted by DivaVocals View Post
    You would keep whichever file is the MOST RECENT VERSION..
    Yes, keep the latest greatest version... upgrade to meet the needs. The latest will have bug fixes... however... delete the jscript_jquery-min.js file.... why duplicate min when your loading it from Google! also, only keep one call to get min... don't need to duplicate the load, it will only server to slow your site down.

    personally, I like to get the version of jquery I want to use and drop it into the script folder with the version within the name like
    jscript_jquery-1.11.1.min.js, remove the calls to get it. old habits... if I can't read the code, I don't use it..

    the down side to this, I'll have to go get the bug fixes myself... the upside, it's available to anything that requires it... let your template load jquary and comment out colorbox call...

    colorbox works with jquary-1.11.1.min too... forgot I upgrade to it.... tested with jquary-1.11.0 on ZC 1.5.3
    Dave
    Always forward thinking... Lost my mind!

  7. #87
    Join Date
    Apr 2011
    Posts
    91
    Plugin Contributions
    0

    Default Re: Zen Colorbox

    Quote Originally Posted by DivaVocals View Post
    You would keep whichever file is the MOST RECENT VERSION.. Highlighted so YOU can SEE which one is the most RECENT version..

    Nothing.. (which is why it's not mentioned in the readme..)
    I saw the difference in version that you highlighted, BUT I do not understand the language and therefore do not understand if there is a difference in what is being done in the way the code is written (the 2 APPEAR to be completely different, so therefore I do not know if different things are being done)

    OR are you basically saying that if I change this:
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
    <script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.easing.1.3.js' ?>" type="text/javascript"></script>

    to this:
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" type="text/javascript"></script>
    <script src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.easing.1.3.js' ?>" type="text/javascript"></script>

    that it can be used WITHOUT even uploading the other?

    OTHER QUESTION PLEASE:

    When I use the default pop-up (colorbox false), the pop-up large image window closes upon clicking anywhere on it.

    Should the colorbox close in the same way, by clicking anywhere on the image?

    It closes upon clicking off the image area (overlay).
    Zen Cart 1.5.3, Database Patch Level: 1.5.3
    Server OS: Linux 2.6.32, Database: MySQL 5.5.41
    HTTP Server: Apache, PHP Version: 5.4.37

  8. #88
    Join Date
    Apr 2011
    Posts
    91
    Plugin Contributions
    0

    Default Re: Zen Colorbox

    Quote Originally Posted by stiggybaby View Post
    I OTHER QUESTION PLEASE:

    When I use the default pop-up (colorbox false), the pop-up large image window closes upon clicking anywhere on it.

    Should the colorbox close in the same way, by clicking anywhere on the image?

    It closes upon clicking off the image area (overlay).
    I take that back... when I click on the medium image from the product info page, the browser window changes to a window displaying the large image, with the image shrunk to fit the window/page size. When I click on the image it goes from fit to full size with a magnifying glass from - to +.

    To return (close the large image) I must click on the back arrow on the browser (setting: Close on Overlay Click = true)

    Esc also does not close it. Tried 2 different browsers too.
    Last edited by stiggybaby; 2 Aug 2014 at 05:00 PM.
    Zen Cart 1.5.3, Database Patch Level: 1.5.3
    Server OS: Linux 2.6.32, Database: MySQL 5.5.41
    HTTP Server: Apache, PHP Version: 5.4.37

  9. #89
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Zen Colorbox

    OHHHHHHH Divaaaaaaa!!!!!


    I figured you would know better than me...does colorbox work with IH4 in 1.5.3?

    I know that the Zen Lightbox does due to the shared file but was wondering if this mod would work too and if so what to do with the shared file. I don't think the colorbo file includes the needed info for IH, does it?

  10. #90
    Join Date
    Aug 2014
    Location
    South Africa
    Posts
    27
    Plugin Contributions
    0

    Default Re: Zen Colorbox

    Hi Fellow Zenners

    I really like the look of this addon and it installed without a glitch or so I thought... I have no tried to add additional images i.e. picture (Main) picture_2 and picture_3 and they show up in my products page as expected but for some reason only the main image "picture" open inside the color box. The two additional image open in what looks like the standard Zen Cart browser kinda thing. Please help

    Click image for larger version. 

Name:	main image.jpg 
Views:	99 
Size:	52.6 KB 
ID:	14421

    Click image for larger version. 

Name:	additional image.jpg 
Views:	115 
Size:	55.7 KB 
ID:	14422

 

 
Page 9 of 34 FirstFirst ... 789101119 ... LastLast

Similar Threads

  1. v155 Attribute image swapped for main image using Colorbox
    By soxophoneplayer in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 2 Jun 2016, 02:34 PM
  2. Trying to fix inline code with colorbox...
    By toomanyknots in forum General Questions
    Replies: 2
    Last Post: 5 Apr 2015, 04:26 PM
  3. IH and Zen Colorbox vs Zen Lightbox?
    By Feznizzle in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 28 Jan 2015, 02:29 AM
  4. Lightbox OR Colorbox
    By Rizla in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 2 May 2014, 11:55 AM
  5. LightBox, SlimBox, ColorBox, which one is better?
    By waterbender in forum General Questions
    Replies: 0
    Last Post: 13 Aug 2013, 07:32 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