Thread: Zen Colorbox

Page 5 of 34 FirstFirst ... 3456715 ... LastLast
Results 41 to 50 of 336
  1. #41
    Join Date
    Apr 2013
    Location
    Florida
    Posts
    57
    Plugin Contributions
    0

    Default Re: Zen Colorbox

    It says beta testing... I'm interested!... Go ahead, I'll be a guinea pig!...

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

    Default Re: Zen Colorbox

    Quote Originally Posted by DivaVocals View Post
    And yeah one of these days I kind of plan on uploading this to be released.. its not my module but it should be made available to the community..
    Quote Originally Posted by chowardart View Post
    It says beta testing... I'm interested!... Go ahead, I'll be a guinea pig!...
    Not my module.. not running the beta test.. I was just one of the beta testers, and when my time permits I will probably just submit it for the community..
    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.

  3. #43
    Join Date
    Nov 2009
    Posts
    285
    Plugin Contributions
    5

    Default Re: Zen Colorbox

    I don't mind to post it to the community, I just don't have any time to support it, and feed weird offering something with no support.

    Thoughts?

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

    Default Re: Zen Colorbox

    Quote Originally Posted by niestudio View Post
    I don't mind to post it to the community, I just don't have any time to support it, and feed weird offering something with no support.

    Thoughts?
    No worries dude.. I wouldn't submit it unless I thought it was stable.. (trust me.. it is.. ) Besides.. it's the Zen Cart community.. you KNOW that eventually someone picks up the reigns for the good add-ons.. I was just gonna make the recently posted changes to it and submit it..
    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.

  5. #45
    Join Date
    Nov 2009
    Posts
    285
    Plugin Contributions
    5

    Default Re: Zen Colorbox

    I'll upload it tonight then.

    d

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

    Default Re: Zen Colorbox

    Quote Originally Posted by niestudio View Post
    I'll upload it tonight then.

    d
    Will you include the recently posted mods???
    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.

  7. #47
    Join Date
    Nov 2009
    Posts
    285
    Plugin Contributions
    5

    Default Re: Zen Colorbox

    I did not change anything from the one I sent you before. No Time

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

    Default Re: Zen Colorbox

    Quote Originally Posted by niestudio View Post
    I did not change anything from the one I sent you before. No Time
    If you are going to submit this, then I'll submit an update with the recent changes..
    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.

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

    Default Re: Zen Colorbox

    OK... not sure if this would be helpful... been working on a responsive upgrade for one of my sites... still haven't upload yet so can't test this on a small device, seems to work resizing the browser. Love the colorbox mod... way easy to install.
    Running Zen 1.5.1
    Responsive blue... can't really say it's blue anymore..
    jquery 1.10.2.min
    jquery colorbox v1.4.4 (2013) to fix an conflict, had to upgrade colorbox and jquer min..

    added this just above the </head> tag in template html_header.php file
    Code:
    <script type="text/javascript">
        // Make ColorBox responsive
        jQuery.colorbox.settings.maxWidth  = '95%';
        jQuery.colorbox.settings.maxHeight = '95%';
    
        // ColorBox resize function
        var resizeTimer;
        function resizeColorBox()
        {
            if (resizeTimer) clearTimeout(resizeTimer);
            resizeTimer = setTimeout(function() {
                    if (jQuery('#cboxOverlay').is(':visible')) {
                            jQuery.colorbox.load(true);
                    }
            }, 300);
        }
    
        // Resize ColorBox when resizing window or changing mobile device orientation
        jQuery(window).resize(resizeColorBox);
        window.addEventListener("orientationchange", resizeColorBox, false);
    </script>
    In testing the colorbox resized to meet the screen width... hopefully I can test it soon live...

    I got the code from another forum post, and was looking at the same answer for myself, thought I'd pass it along.
    Dave
    Always forward thinking... Lost my mind!

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

    Default Re: Zen Colorbox

    Quote Originally Posted by davewest View Post
    OK... not sure if this would be helpful... been working on a responsive upgrade for one of my sites... still haven't upload yet so can't test this on a small device, seems to work resizing the browser. Love the colorbox mod... way easy to install.
    Running Zen 1.5.1
    Responsive blue... can't really say it's blue anymore..
    jquery 1.10.2.min
    jquery colorbox v1.4.4 (2013) to fix an conflict, had to upgrade colorbox and jquer min..

    added this just above the </head> tag in template html_header.php file
    Code:
    <script type="text/javascript">
        // Make ColorBox responsive
        jQuery.colorbox.settings.maxWidth  = '95%';
        jQuery.colorbox.settings.maxHeight = '95%';
    
        // ColorBox resize function
        var resizeTimer;
        function resizeColorBox()
        {
            if (resizeTimer) clearTimeout(resizeTimer);
            resizeTimer = setTimeout(function() {
                    if (jQuery('#cboxOverlay').is(':visible')) {
                            jQuery.colorbox.load(true);
                    }
            }, 300);
        }
    
        // Resize ColorBox when resizing window or changing mobile device orientation
        jQuery(window).resize(resizeColorBox);
        window.addEventListener("orientationchange", resizeColorBox, false);
    </script>
    In testing the colorbox resized to meet the screen width... hopefully I can test it soon live...

    I got the code from another forum post, and was looking at the same answer for myself, thought I'd pass it along.
    Just tested this on my smartphone.. hotdamn.. It works!!!

    Okay if other beta testers could weigh in, I'll make some time this week to submit this to the downloads with all the latest updates (including this one) included.. Thanks Dave!!!
    Last edited by DivaVocals; 10 Nov 2013 at 05:24 PM.
    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.

 

 
Page 5 of 34 FirstFirst ... 3456715 ... 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