Jump to content

BomAle

Members
  • Posts

    821
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Like
    BomAle reacted to Unlucky in (BIM40) Easy Popup   
    Hi,
    Several are listed here -  The Best Exit-Intent Popup Plugins for WordPress:
    https://wpbuffs.com/exit-intent-popup-plugins-for-wordpress/
     
    Here is one of the examples that does the following:
    https://wpbuffs.com/exit-intent-popup-plugins-for-wordpress/#1
    Yeloni offers three types of exit-intent popups.
    Based on mouse movement Clicking Browser Back button Clicking Internal or External Link
  2. Like
    BomAle got a reaction from DSystem in Easy Header Widget 3 Column Responsive   
    This is a guide for organize header widgets into 3 column, this concept could be extended to 4-5 column with automated configuration (A idea for custom theme).
    The options are many but I suggest to leave it as I wrote below:
    @media screen and (min-width: 980px) { /* c = $c = 3, 3 colonne */ [data-widgetArea='header'] > ul > li{ float: left; display: inline-block !important; padding: 0 !important; margin: 0 1% 2% !important; /* m = 1 */ width: 32%; /*(100-(c*2-2)*m)/c => (100-(3*2-2)*1)/3 = 32 */ vertical-align: top; height: 400px; overflow-y: auto !important; overflow-x: hidden !important; } /* http://lea.verou.me/2011/01/styling-children-based-on-their-number-with-css3/ */ [data-widgetArea='header'] > ul > li:nth-of-type(3n+1):nth-last-child(1) { width:100%; margin-bottom: 0 !important; margin-right: 0 !important; } /* 3n+1 first li of each row, 2 second to the last */ [data-widgetArea='header'] > ul > li:nth-of-type(3n+1):nth-last-child(2), [data-widgetArea='header'] > ul > li:nth-of-type(3n+1):nth-last-child(2) ~ li { width:49%; margin-bottom: 0 !important; } [data-widgetArea='header'] > ul > li:nth-of-type(3n+2):nth-last-child(1) { margin-right:0 !important; } [data-widgetArea="header"] > ul > li:nth-of-type(3n+1):nth-last-child(3), [data-widgetArea="header"] > ul > li:nth-of-type(3n+1):nth-last-child(3) ~ li { margin-bottom: 0 !important; } /* LAST WIDGET {$c}n*/ [data-widgetArea='header'] > ul > li:nth-of-type(3n){ float: none; clear: both; margin-right: 0 !important; } /* FIRST WIDGET {$c}n+1*/ [data-widgetArea='header'] > ul > li:nth-of-type(3n+1){ margin-left: 0 !important; } [data-widgetArea="header"]::after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } } Copy & Paste this code on custom.css

    Source : InvisionITA
  3. Like
    BomAle reacted to Millipede in SendMail Advanced   
    Thanks so much, that's very helpful
  4. Thanks
    BomAle got a reaction from Millipede in SendMail Advanced   
    Yes in your case 450 is raccomanded, keep in mind that email tests are not counted so it is right to remove some numbers from the maximum allowed (there are no other cases into IPS framework).

    I advise you to set up bulk mails with lower priority because they could delay the most priority emails.

  5. Thanks
    BomAle got a reaction from Joey_M in Easy Header Widget 3 Column Responsive   
    If you would manage it with css and not with html/javascript try to put this into custom.css or include created css file into page settings and set single column into page settings
    @media screen and (min-width: 980px) { /* c = $c = 3, 3 column */ #elCmsPageWrap [data-widgetArea='col1'] > ul > li{ float: left; display: inline-block !important; padding: 0 !important; margin: 0 1% 2% !important; /* m = 1 */ width: 32%; /*(100-(c*2-2)*m)/c => (100-(3*2-2)*1)/3 = 32 */ vertical-align: top; height: 400px; overflow-y: auto !important; overflow-x: hidden !important; } /* http://lea.verou.me/2011/01/styling-children-based-on-their-number-with-css3/ */ #elCmsPageWrap [data-widgetArea='col1'] > ul > li:nth-of-type(3n+1):nth-last-child(1) { width:100%; margin-bottom: 0 !important; margin-right: 0 !important; } /* 3n+1 first li of each row, 2 second to the last */ #elCmsPageWrap [data-widgetArea='col1'] > ul > li:nth-of-type(3n+1):nth-last-child(2), #elCmsPageWrap [data-widgetArea='col1'] > ul > li:nth-of-type(3n+1):nth-last-child(2) ~ li { width:49%; margin-bottom: 0 !important; } #elCmsPageWrap [data-widgetArea='col1'] > ul > li:nth-of-type(3n+2):nth-last-child(1) { margin-right:0 !important; } #elCmsPageWrap [data-widgetArea='col1'] > ul > li:nth-of-type(3n+1):nth-last-child(3), #elCmsPageWrap [data-widgetArea='col1'] > ul > li:nth-of-type(3n+1):nth-last-child(3) ~ li { margin-bottom: 0 !important; } /* LAST WIDGET {$c}n*/ #elCmsPageWrap [data-widgetArea='col1'] > ul > li:nth-of-type(3n){ float: none; clear: both; margin-right: 0 !important; } /* FIRST WIDGET {$c}n+1*/ #elCmsPageWrap [data-widgetArea='col1'] > ul > li:nth-of-type(3n+1){ margin-left: 0 !important; } #elCmsPageWrap [data-widgetArea='col1']::after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } } if you would fit height and not fix to 400px you must remove height: 400px; and add inside media query clause
    #elCmsPageWrap [data-widgetArea='col1'] > ul{ display: flex; flex-wrap: wrap; } Result with flex

     
  6. Thanks
    BomAle got a reaction from Millipede in SendMail Advanced   
    This setting work when try to "send a new mail with IPS framework"1 and if MTA (not only smtp method, but anyone you have configured) is offline the email logged as "421 error" are processed when the service return online.
    1. the counter increment before send is called, regardless of errors arising within send (\IPS\Email\Outgoing\Exception) because currently I have not found a way to detect if error is temporary or not (only 421 seem to be temporary).
    As I specified in the answer above it works with the configured method.
  7. Like
    BomAle reacted to Matt in Quick request if you have 2 minutes...   
    Hi all,
    I have a request that will only take a few minutes of your time, and will give you something in return.
    We're finally getting around to creating books and guides to help new customers get comfortable on the Invision Community platform.
    I'm looking for a few positive quotes and 'soundbites' we can use on a few pages around the site, on social media and in these guides.
    Hopefully you've got nice things to say. @LaCollision gave us a very nice quote a while back.
    So things like:
    That sort of thing. If you have a specific use for Invision Community, then we'd love to hear from you.
    If you are happy to leave a comment, please also leave your name and URL to your site.
    If the site is safe for work, then we'll link back to it when using any quotes on our site and on social media.
    We get a fairly health bit of traffic so I'm sure you'll get a good number of click throughs too.
    If we get 20 useable quotes, I'll post an exclusive picture of Charles and Lindy holding a hotdog from 2008. I did not seek their permission before making this promise.
    Thanks for reading!
  8. Like
    BomAle reacted to TheJackal84 in Sticky Notes (support topic)   
    Updated to 2.0.5
    New Features
    Added tags to global sticky notes to allow you engage your members more personally in the sticky notes ( Try not to use these when allowing guests to view the notes as they don't have stats )
    This application now requires a license key to work, Send me a PM and I will generate you a license key, Your board url is also required Bug Fix
    Fixed the bug on mobiles when the drag and drop collided with the dismiss button
  9. Like
    BomAle reacted to A Zayed in External Links Rich Embed [Support Topic]   
    Kindly find my replies below ?:
    Many thanks for your suggestions to rise-up the plugin ?
  10. Like
    BomAle reacted to A Zayed in External Links Rich Embed [Support Topic]   
    A new version has just been released with an extra feature,
    Version 1.2.0 now supports rich external links embeds...
    Demo:

    demo.webm
  11. Like
    BomAle reacted to Gill in Mobile App, Progressive Web App (PWA) For IPB   
    @Aiwa Majority of Community members are demanding the hybrid solution like PWA not native ones which may IPB team tried but Failed (i don't know IPB team mobile app history) 
    PWA solution require just javascript skills not native one like  java and swift which most of web developers already have :)
    I hope one day one of IPB developer or IPB TEAM hear all of voices and do something for us to compete against Telegram groups, discord server, Facebook Groups, Whatsapp Group 
    and make our communities users more engage to our sities 
    thanks :)
  12. Like
    BomAle reacted to TheJackal84 in Sticky Notes (support topic)   
    Fixed that for the next update.
    Also added the ability to use tags in the editor to make the global notes more personal to each member


  13. Like
    BomAle reacted to Silnei L Andrade in Mobile App, Progressive Web App (PWA) For IPB   
    Learn how to build a PWA in 5 minutes
    One of the most important characteristics of Progressive Web Apps (PWAs) is the “progressive”. You don’t have to implement every feature of a PWA to consider your site a PWA. Instead, the idea is that you implement a range of steps, each making your app better for your end users.
    This blog post makes a key assumption. There are many developers out there who want to make their apps progressively better, but they want to do it in 5 minutes or less. And that’s what this blog aims to show you.
    https://medium.com/dev-channel/learn-how-to-build-a-pwa-in-under-5-minutes-c860ad406ed
  14. Like
    BomAle reacted to Cyboman in Mobile App, Progressive Web App (PWA) For IPB   
    Adjust mobile design:
    Then create the progressive web app (PWA) with common requirements:
     
    My community is begging for an app, and I already lost ~60% of member traffic to Facebook and WhatsApp. Why? Not because my content isn't good enough anymore, but my members use my contents, and afterwards, go on with live messaging/meetings (which is an elemental part in my industry) via Facebook and WhatsApp and I lose control. I can do nothing against it. My competitors don't have contents, but they have active Facebook and WhatsApp groups. The FB/WA messaging functions are way better, and my users require an app icon to remember my site as well as push notifications to their mobiles. Not having an app is blocking my success factors extremely. I'm already considering buying an app development for my WordPress pages (which seems to be cheaper as many developers already did it for the WP platform...), but that would be the point to lose the power an IPS app would have. I'd prefer an IPS app, but I don't have ages to wait for one. We need to speed up any arrangement.
    I'd be willing to pay, too!!!
  15. Like
    BomAle reacted to Gill in Mobile App, Progressive Web App (PWA) For IPB   
    Hi Guys IPB is awesome and far better than any other forum software available in market. IPB team working very hard to implement new feature every month i appreciate their     hard work 
    But now in smartphone world everyone is using mobile devices that have apps to access their favorite content. people don't like first open browser, then type url and then type username, password. Mobile friendly websites are no longer a solution. Forums are facing competition from Telegram groups, discord server, Facebook Groups, Whatsapp Group
    @Charles PLEASE HELP US !!!!! 
    I know it is very difficult to maintain native app. so Now companies use hybrid approach to cut cost for mobile app.
    It would be great if IPB team develop the in house Progressive Web app for IPB. IPB theme already mobile friendly so every little to do  Just need to implement
    1. Service- worker for Offline uses
    2. Push Notification for Notifications
    3. Login and signup screen (that remember the user name and password)
    Here some Key Benefits Of PWA over Native App

    IPB4 team already have brilliant javascript developers. I think it would not too difficult for them to do this.
    I would like to Pay for this feature separately  if it will be developed. It would be Milestone for IPB 4 as compared to other forums software.
    Others IPB members if you are agree please vote this feature as much you can and share your's feed back too and don't Forget to Participate in Above Poll Question
     

    Companies Using PWA!!
     
    PWA is not just another Buzz word,  PWA again transferring the power back to Web Developers which was lost during native mobile app era. I think REST API based apps for IPB not right approach, From developers point of views, it will make mobile apps  hard to maintain and compatible with every new version of IPB and updates of hundered of IPB plugins. However PWA just uses Mobile Responsive of Website.
    Forums Founders  spent both Time and money to make his/her community sustainable. sometime new users like the forums but forget url and browser history deleted,at that time website looses one member ? this same things happened with me many times and may be other members share the same experience. 
    For iOS users or Android users there is more chances, new users of clients Forum website click on App icons  (Installed by PWA ) again than open browser inside the mobile, remember the website URL and hit the enter. No matter whether  PWA support push notifications for particular mobile os or not :)
     PWA fully supported in Window 10 redstone 4. We can't ignore the billions machine running  window 10. Window 10 PWA app would be huge opportunity  to keep the website users engage with website. Just imagine clients Forums apps are installed on users PC.  Even They don't open browser and enter forum URL,  with single push notification you can make users again engage to your website ? More and more adopting the window 10

    This is my humble request to IPB team please please develop in house mobile app for IPB others wise our communities websites will loose the competition in mobile app age.
     THANKS :)
     
  16. Haha
    BomAle reacted to Aiwa in Create PHP composer bundle of IPB   
    So I understand your argument, piracy will always exist, so let's make it easier for them? Did I interpret that right? 
  17. Like
    BomAle reacted to DawPi in Copy/Move Pages database..   
    I did it manually. SQL backup, import, update category ID's, member ID's etc. ?
  18. Like
    BomAle reacted to kmk in Topics By Tags   
    Hello @Adriano Faria
    Can you add auto getting option for clubs? (if possible for forum too)
    1. So if any members open some clubs the Topics By Tags block will auto get it to show users who has permission to see it.
    2. With this option I don't have to pending(so hard work) to add clubs opened by others users or me. 
  19. Like
    BomAle reacted to Josiah Wallingford in Members Tab (Support Topic)   
  20. Thanks
    BomAle got a reaction from DSystem in SendMail Advanced   
    I have reupload the 1.0.1 with the fix, tested with a new installation ?
  21. Like
    BomAle reacted to All Astronauts in Awesome Member Hovercards   
    Gave this some thought overnight.  I can pull those and make them available (within reason) and then have a blank template be toggled on/off for you to use to do what you want with those vars available there.
    Will be bumping this to $15 / $6 when I'm done ?
    Don't forget! If your users have animated coverphotos... well... ?

  22. Like
    BomAle reacted to Adriano Faria in Quizzes   
    Ok, I’ll add in next version, hopefully with a new type of quiz: grade mode - multiple right answers. 
    Just need to finish something I’m working first. 
  23. Like
    BomAle reacted to Fosters in Fosters Discord Login Handler - Supporttopic   
    It was already fixed for a while, I just haven’t realized that the wrong version was uploaded to the marketplace ☺️ There was some minor chaos with all the  testers and different releases which we gave them, which should be over now ?
  24. Haha
    BomAle reacted to SJ77 in Profile Viewing Privacy   
  25. Like
    BomAle reacted to Josiah Wallingford in Fosters Discord Login Handler - Supporttopic   
    Here you go:
     
×
×
  • Create New...