Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 46
  1. #21
    Join Date
    Jan 2021
    Location
    Arizona
    Posts
    134
    Plugin Contributions
    0

    Default Re: Home Page Products Carousel [Support Thread]

    Quote Originally Posted by TheGrimReaper View Post
    Excellent thought. Both instances of it?
    Yup!

    Thank you for that one.
    Waiting to be Zenned - Over-thinking makes an easy task complicated.

  2. #22
    Join Date
    Jan 2021
    Location
    Arizona
    Posts
    134
    Plugin Contributions
    0

    Default Re: Home Page Products Carousel [Support Thread]

    I am//was having a problem with the images in the carousel. It seems I was getting a small image that was over-expanded and pretty lossy. I tried resizing in the admin to no avail, even to the point of sizing lower than the small image. I tried several different sizing settings with no change. What I ended up doing was increasing the number of images in admin all the way up to 6 before it became sized right. 6 though, looks pretty good albeit pretty crowded. Any thoughts, ideas, suggestions are welcome
    Waiting to be Zenned - Over-thinking makes an easy task complicated.

  3. #23
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,542
    Plugin Contributions
    19

    Default Re: Home Page Products Carousel [Support Thread]

    Quote Originally Posted by TheGrimReaper View Post
    I am//was having a problem with the images in the carousel. It seems I was getting a small image that was over-expanded and pretty lossy. I tried resizing in the admin to no avail, even to the point of sizing lower than the small image. I tried several different sizing settings with no change. What I ended up doing was increasing the number of images in admin all the way up to 6 before it became sized right. 6 though, looks pretty good albeit pretty crowded. Any thoughts, ideas, suggestions are welcome
    Yeah, with Owl Carousel being responsive, it automatically adapts width of the individual item to the size of the container and number of items displayed.

    You can try adding a max-width setting in your includes/templates/YOUR_TEMPLATE/css/index_home.css
    Code:
    .sliderItem {
        max-width: 200px;
        margin: 0 auto;
    }
    Of course, change the 200 to what you seem fit.

  4. #24
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,703
    Plugin Contributions
    11

    Default Re: Home Page Products Carousel [Support Thread]

    Quote Originally Posted by balihr View Post
    Yeah, with Owl Carousel being responsive, it automatically adapts width of the individual item to the size of the container and number of items displayed.
    ....
    yeah with owl carousel being pretty much dead, it might behoove someone to update this plugin....

    https://github.com/OwlCarousel2/OwlCarousel2

    certainly needs updating in order to work with the latest version of jQuery....
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  5. #25
    Join Date
    Jan 2021
    Location
    Arizona
    Posts
    134
    Plugin Contributions
    0

    Default Re: Home Page Products Carousel [Support Thread]

    Quote Originally Posted by balihr View Post
    Yeah, with Owl Carousel being responsive, it automatically adapts width of the individual item to the size of the container and number of items displayed.

    You can try adding a max-width setting in your includes/templates/YOUR_TEMPLATE/css/index_home.css
    Code:
    .sliderItem {
        max-width: 200px;
        margin: 0 auto;
    }
    Of course, change the 200 to what you seem fit.
    OUCH! Hummm, ok! Lets see how badly I can break my home page. Copy, copy, copy. I assume this is new code, not a replacement, so this (I think) is my first exposure to (somewhat) starting something and I best well copy that file many times just in case. Itsa gonna be a cool lesson- To the Batcave Robin!
    Waiting to be Zenned - Over-thinking makes an easy task complicated.

  6. #26
    Join Date
    Jan 2021
    Location
    Arizona
    Posts
    134
    Plugin Contributions
    0

    Default Re: Home Page Products Carousel [Support Thread]

    Quote Originally Posted by TheGrimReaper View Post
    OUCH! Hummm, ok! Lets see how badly I can break my home page. Copy, copy, copy. I assume this is new code, not a replacement, so this (I think) is my first exposure to (somewhat) starting something and I best well copy that file many times just in case. Itsa gonna be a cool lesson- To the Batcave Robin!
    No need to copy that file, there's only 2 lines in it -
    @import url("owl.carousel.css");
    @import url("owl.theme.default.css");
    There! Copied and stored.
    Waiting to be Zenned - Over-thinking makes an easy task complicated.

  7. #27
    Join Date
    Jan 2021
    Location
    Arizona
    Posts
    134
    Plugin Contributions
    0

    Default Re: Home Page Products Carousel [Support Thread]

    Quote Originally Posted by balihr View Post
    Yeah, with Owl Carousel being responsive, it automatically adapts width of the individual item to the size of the container and number of items displayed.

    You can try adding a max-width setting in your includes/templates/YOUR_TEMPLATE/css/index_home.css
    Code:
    .sliderItem {
        max-width: 200px;
        margin: 0 auto;
    }
    Of course, change the 200 to what you seem fit.
    Well, that did work pretty good!. At first I thought it was a major file, but then realized it was only css - no problem. I learned.
    Waiting to be Zenned - Over-thinking makes an easy task complicated.

  8. #28
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,542
    Plugin Contributions
    19

    Default Re: Home Page Products Carousel [Support Thread]

    Quote Originally Posted by carlwhat View Post
    yeah with owl carousel being pretty much dead, it might behoove someone to update this plugin....

    https://github.com/OwlCarousel2/OwlCarousel2

    certainly needs updating in order to work with the latest version of jQuery....
    Well, uhm... OwlCarousel may be dead, but it's still quite good. The version currently available for download was based on OC 2.3.3, and I've submitted an update about a week ago (takes quite long to get approved). The update uses the latest OC 2.3.4 which definitely does work with jQuery 3.5.1 (tested on ZC 1.5.7b without issues). The one found on my website is updated.

    But, you just raised another BIG red flag - I was just about to release ZX Slideshow v2 with much better functionality than the original, but I based it on OwlCarousel...

  9. #29
    Join Date
    Jan 2021
    Location
    Arizona
    Posts
    134
    Plugin Contributions
    0

    Default Re: Home Page Products Carousel [Support Thread]

    Quote Originally Posted by balihr View Post
    Well, uhm... OwlCarousel may be dead, but it's still quite good. The version currently available for download was based on OC 2.3.3, and I've submitted an update about a week ago (takes quite long to get approved). The update uses the latest OC 2.3.4 which definitely does work with jQuery 3.5.1 (tested on ZC 1.5.7b without issues). The one found on my website is updated.

    But, you just raised another BIG red flag - I was just about to release ZX Slideshow v2 with much better functionality than the original, but I based it on OwlCarousel...
    Help me, I can't swim! gurgle, gurgle

    Let me know what ya end up doing, always on board with better
    Waiting to be Zenned - Over-thinking makes an easy task complicated.

  10. #30
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,542
    Plugin Contributions
    19

    Default Re: Home Page Products Carousel [Support Thread]

    Quote Originally Posted by TheGrimReaper View Post
    Let me know what ya end up doing, always on board with better
    My reply was actually to @carlwhat...

    I don't have any plans to improve this plugin - no feedback, no ideas, no requests... I'm assuming it's doing it's job quite well. There is an update already submitted, just not yet available in the Plugins because it's awaiting Moderators' approval (@Scott wakey wakey ). There's not much in the update so don't expect anything special.

    The other thing I was just about to release was an update for ZX Slideshow, which is a similar, but quite different plugin. If you had the chance to check what I PM-ed you the other day, it's already included there...
    But, I guess now I have to put that on hold since OwlCarousel is a dead end. Thank you, @carlwhat. Do you get commission from my Recycle Bin, perhaps?

 

 
Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. Set number of products displayed per page (support thread)
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 146
    Last Post: 2 Nov 2023, 12:50 AM
  2. v150 Carousel Featured Products (carouFresel style) [Support Thread]
    By kamelion0927 in forum All Other Contributions/Addons
    Replies: 21
    Last Post: 16 Oct 2023, 01:47 PM
  3. Replies: 94
    Last Post: 8 Oct 2014, 07:47 AM
  4. Template support thread: Sliding Home Images
    By markz in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 29 Jul 2013, 07:49 PM
  5. Products Disclaimer Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 12
    Last Post: 2 Jun 2010, 11:29 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