Jump to content

onlyME

Clients
  • Posts

    2,707
  • Joined

  • Days Won

    17

Reputation Activity

  1. Like
    onlyME got a reaction from kmk in Featured Content for IPS4.x+   
    It's already in to-do list
  2. Like
    onlyME got a reaction from Maxxius in Featured Content for IPS4.x+   
    Featured Content  for IPS4.x+
    This is Featured Content for IPS 4.0. With this app, you can easy create beautiful sliders for your site:
    Create multi sliders, fully responsive - will adapt to any device. Flexible customization: horizontal/vertical layout, random mode, autoplay, speed, duration, button,... Auto get contents from: Pages, Forums and RSS url Easy to add a content to a slider, drag & drop to sort the contents. The sliders was added as widgets, easy to drag and place them to your site. Live Demo: http://zuzu.vn/page/featuredcontent4/
    Marketplace: http://community.invisionpower.com/files/file/7290-bim40-featured-content/
     
  3. Thanks
    onlyME got a reaction from kmk in Featured Content for IPS4.x+   
    Hi,
    Try to create a "Manual" slider or grid, and then add the custom link, title, image.
  4. Like
    onlyME reacted to Morozzz in Featured Content for IPS4.x+   
    That would be great. Surely this functionality will be very popular.
  5. Like
    onlyME reacted to forumdev99 in Featured Content for IPS4.x+   
    problem solved - thanks for the quick support!
  6. Like
    onlyME got a reaction from LiquidFractal in Featured Content for IPS4.x+   
    You can take a look my other app: Slider Maker, it supports adding elements (images, text, html, video).
     
  7. Like
    onlyME got a reaction from BomAle in Featured Content for IPS4.x+   
    You can take a look my other app: Slider Maker, it supports adding elements (images, text, html, video).
     
  8. Thanks
    onlyME got a reaction from Namo in Topic Thumbnail for IPS4.x   
    @Namo edit your theme > core > global > plugins > bim_tthumb_showGridview
    Find ipsGrid_span13 and replace by ipsGrid_span2
  9. Thanks
    onlyME got a reaction from Namo in Topic Thumbnail for IPS4.x   
    @Namo
    Your theme uses css that overwrite ipsGrid
    @supports (display: grid){ [data-ipsgrid-minitemsize="500"]{ --grid-min: 400px; } [data-ipsgrid-minitemsize="400"]{ --grid-min: 400px; } [data-ipsgrid-minitemsize="350"]{ --grid-min: 350px; } [data-ipsgrid-minitemsize="300"]{ --grid-min: 300px; } [data-ipsgrid-minitemsize="250"]{ --grid-min: 250px; } [data-ipsgrid-minitemsize="230"]{ --grid-min: 230px; } [data-ipsgrid-minitemsize="200"]{ --grid-min: 200px; } [data-ipsgrid-minitemsize="170"]{ --grid-min: 170px; } [data-ipsgrid-minitemsize="150"]{ --grid-min: 150px; } [data-ipsgrid-minitemsize="100"]{ --grid-min: 100px; } [data-ipsgrid-minitemsize="60"]{ --grid-min: 60px; } [data-ipsgrid-minitemsize="40"]{ --grid-min: 40px; } .ipsGrid{ display: grid; grid-gap: var(--grid-gap); grid-template-columns: repeat(12, 1fr); } /* Forces truncated text to work */ .ipsGrid > *{ min-width: 0; } [data-ipsgrid-minitemsize]{ --grid-fill: auto-fill; grid-template-columns: repeat(var(--grid-fill), minmax(calc(var(--grid-min) + var(--grid-gap)), 1fr)); } .ipsGrid + .ipsGrid{ margin-top: var(--grid-gap) !important; } .ipsGrid > [class*="ipsGrid_span"]{ width: auto !important; margin: 0 !important; float: none !important; height: auto !important; } .ipsGrid::before, .ipsGrid::after{ display: none; } .cPromotedImages{ --grid-gap: 0px; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span1{ grid-column: span 1; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span2{ grid-column: span 2; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span3{ grid-column: span 3; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span4{ grid-column: span 4; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span5{ grid-column: span 5; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span6{ grid-column: span 6; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span7{ grid-column: span 7; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span8{ grid-column: span 8; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span9{ grid-column: span 9; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span10{ grid-column: span 10; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span11{ grid-column: span 11; } .ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span12, .ipsGrid:not([data-ipsgrid-minitemsize]) > :not([class*="ipsGrid_span"]){ grid-column: span 12; } @media (max-width: 979px){ .ipsGrid.ipsGrid_collapseTablet:not([data-ipsgrid-minitemsize]) > [class*="ipsGrid_span"]{ grid-column: span 12; } } @media (max-width: 767px){ .ipsGrid.ipsGrid_collapsePhone:not([data-ipsgrid-minitemsize]) > [class*="ipsGrid_span"]{ grid-column: span 12; } } /* Ensure that grids don't span wider than the viewport on mobiles */ @media (max-width: 550px){ [data-ipsgrid-minitemsize="500"]{ grid-template-columns: 1fr; } } @media (max-width: 450px){ [data-ipsgrid-minitemsize="400"]{ grid-template-columns: 1fr; } } @media (max-width: 400px){ [data-ipsgrid-minitemsize="350"]{ grid-template-columns: 1fr; } } @media (max-width: 350px){ [data-ipsgrid-minitemsize="300"]{ grid-template-columns: 1fr; } } /* Allow profile photos to wrap on clubs */ .cClubCard .cClubCard_memberList{ white-space: normal; } /* Profile actions on mobiles */ @media (max-width: 767px){ header[data-role='profileHeader'] .ipsGrid{ display: grid !important; } } /* Profile followers */ #elFollowers .ipsGrid{ grid-template-columns: repeat(auto-fill, minmax(48px, 1fr)); --grid-gap: 5px; padding: 5px; margin: 0px; } #elFollowers .ipsGrid > li{ grid-column: initial; } /* Fix gallery albums in Calendar events */ .cGalleryMiniAlbum{ --grid-min: 210px; } .cGalleryMiniAlbum > li::before{ content: ''; display: block; padding-bottom: 100%; } } Try to remove it to see the grid works.
  10. Thanks
    onlyME got a reaction from Sonya* in Featured Content for IPS4.x+   
    Bug, it will be fixed asap.
  11. Thanks
    onlyME reacted to Bluto in Videobox   
    Did you mean YT channel?  If you did you'll need the YT importer which @onlyME sells in the marketplace.
  12. Like
    onlyME reacted to Metor in Topic Thumbnail for IPS4.x   
    Whoops never mind.
  13. Thanks
    onlyME got a reaction from Bakako in Videobox   
    I confirm this bug. It will be fixed as quick as possible in today.
  14. Thanks
    onlyME got a reaction from yameth in Musicbox (Support)   
    Sure, please check your pm.
  15. Like
    onlyME reacted to Lenny Warren in Topic Thumbnail for IPS4.x   
    Many thanks @onlyME, all working now. FANTASTIC SUPPORT AS USUAL. 🙂
  16. Thanks
    onlyME got a reaction from Lenny Warren in Topic Thumbnail for IPS4.x   
    Please give me acp access so I can take a look.
  17. Thanks
    onlyME got a reaction from Lenny Warren in Topic Thumbnail for IPS4.x   
    @Lenny Warren please wait for the next version. I will add a new option for this feature 🙂
  18. Thanks
    onlyME got a reaction from Lenny Warren in Topic Thumbnail for IPS4.x   
    @Lenny Warren try to type the code manually.
    I confirm this bug, it will be fixed in the next version.
  19. Like
    onlyME got a reaction from Lenny Warren in Topic Thumbnail for IPS4.x   
    @Lenny Warren Try to edit your theme > core > global > plugins > bim_tthumb_showThumb
    Find
    <div class="bim_tthumb_wrap"> Replace by
    <div class="bim_tthumb_wrap {{if $topic->unread()}}tthumb_unread{{endif}}"> And then add this code to custom.css
    .bim_tthumb_wrap { opacity: 0.5; } .tthumb_unread { opacity: 1 !important; }  
  20. Like
    onlyME got a reaction from Metor in Topic Thumbnail for IPS4.x   
    I will consider your idea.
  21. Like
    onlyME got a reaction from crmarks in Topic Thumbnail for IPS4.x   
    I will consider your idea.
  22. Like
    onlyME got a reaction from boboss78 in Videobox   
    You can use Video Feed widget, it also has Gridview 2
  23. Like
    onlyME got a reaction from Unlucky in (BIM40) Easy Popup   
    I will take a look.
  24. Like
    onlyME got a reaction from bouckie in Videobox   
    Hi, try to open support ticket to ips so they will generate new Renew-Invoice for you.
  25. Like
    onlyME got a reaction from Joel R in Videobox   
    @Joel R 
    1. It can not save 0 because of it knows 0 is unlimited. You should use permissions to disallow a group to post video.
    2. The lang is catetory_desc and come from Links Directory
    5. Do you mean the 'Promote' button? It's next to the Follow button
    6. It's a bug, I will fix it in next version.
Ă—
Ă—
  • Create New...