Jump to content

BomAle

Members
  • Posts

    821
  • Joined

  • Last visited

  • Days Won

    2

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by BomAle

  1. AdminCP > plugin > click pencil on right of row and will open the dialog with the settings. Go to Template and copy and paste here.
  2. Can you put here the Template field located on plugin settings?
  3. Now, go into admincp plugin configuration and repeat those step: and reupload the file calc.html
  4. edit page calc.html with this, the calcolator seem not work fine. calc.html @Pedro Ibáñez
  5. The plugin configuration is restricted to only one instance, but you can create a lot of popup if you don't would cookie remember. I must convert this plugin to app when I have some free time. No problem, you must configure popup panel as follow: Customize Popup tab 1. Close popup on click elements, leave empty 2. Template, replace with <div id='bacalltoactionpopup' data-controller='plugins.bacalltoactionpopup' class="ipsHide" data-url="http://encontinuo.com/calc.html" data-size="{$p->size}" data-modal="{$p->modal}" data-content="{$p->content}" data-title="{$p->title}" data-close="{$p->close}" data-close-on-click="{$p->closeOnClick}" data-open-on-click="{$p->openOnClick}" data-class-name="{$p->className}" data-transition-popup-show="{$p->transitionPopupShow}" data-transition-popup-hide="{$p->transitionPopupHide}" data-transition-modal-show="{$p->transitionModalShow}" data-transition-modal-hide="{$p->transitionModalHide}" data-exit="{$p->exit}" data-scroll="{$p->scroll}" data-unset="{$p->unset}" data-align="{$p->align}" data-position="{$p->position}" data-wait="{$p->wait}" > <div class='ipsPad ipsType_center'> {$p->msg|raw} </div> </div> <script type="text/javascript"> ;( function($, _, undefined){ "use strict"; ips.controller.mixin('bacalltoactionpopup', 'plugins.bacalltoactionpopup', true, function () { this.around('close',function(fn){ var orig = fn(); orig.done(function(){ ips.utils.cookie.unset('bacalltoactionpopup'); }); return orig; }); }); }(jQuery, _)); </script> Display Rules tab 3. Show Again, check Always option 4. Open popup on click elements, insert a[href*="//encontinuo.com/calc.html"] or for sidebar specific #ipsLayout_sidebar a[href*="//encontinuo.com/calc.html"] NOTE: Now I upload 1.0.2 beta 7 it is a small fix for Open popup on click elements
  6. from suggestion: Content <p> <a class="ipsAttachLink ipsAttachLink_image ipsAttachLink_left" href="https://i.imgur.com/2Q9nu8m.jpg" style="float: left;"><img alt="book cover" class="ipsImage" height="206" src="https://i.imgur.com/2Q9nu8m.jpg" style="width: 148px; height: 220px;" width="196"></a> </p> <p style="text-align: left;"> <span style="font-size:22px;line-height:1.5;"><strong>12 Proven Ways to Convert Abandoning Visitors into Subscribers</strong></span> </p> <p style="text-align: left;line-height:1.8;"> Over 70% of visitors who abandon your website will never return! Learn how to unlock the highest conversion revenue from each of your website visitors! </p> removed class ipsImage_thumbnailed, unset the border for attached image. Template <div id='bacalltoactionpopup' data-controller='plugins.bacalltoactionpopup' class="ipsHide" data-size="{$p->size}" data-modal="{$p->modal}" data-content="{$p->content}" data-title="{$p->title}" data-close="{$p->close}" data-close-on-click="{$p->closeOnClick}" data-open-on-click="{$p->openOnClick}" data-class-name="{$p->className}" data-transition-popup-show="{$p->transitionPopupShow}" data-transition-popup-hide="{$p->transitionPopupHide}" data-transition-modal-show="{$p->transitionModalShow}" data-transition-modal-hide="{$p->transitionModalHide}" data-exit="{$p->exit}" data-scroll="{$p->scroll}" data-unset="{$p->unset}" data-align="{$p->align}" data-position="{$p->position}" data-wait="{$p->wait}" > <div class='ipsPad ipsType_center'> {$p->msg|raw} </div> {{$form = new \IPS\Helpers\Form( 'form', null, \IPS\Http\Url::internal( 'app=core&module=system&controller=register', 'front', 'register' )/*, array( 'data-controller' => 'core.front.system.register')*/ );}} {{$email = new \IPS\Helpers\Form\Email( 'email_address', NULL, TRUE, array( 'accountEmail' => TRUE, 'maxLength' => 150, 'bypassProfanity' => TRUE, 'placeholder' => 'Email' ) );$form->addHtml( $email->html() );}} {{$form->addHtml(\IPS\Theme::i()->getTemplate( 'forms', 'core', 'global' )->button( 'sign_up', 'submit', null, 'ipsButton ipsButton_primary ipsButton_small', array( 'tabindex' => '2', 'accesskey' => 's' ) ));}}{{$form = preg_replace(['/data-ipsForm/', '/<div class="ipsAreaBackground_light ipsClearfix ipsPad ipsType_center">[.\s]*<\/div>/'], '', $form );}} <div class="ipsPad" style="background: #d0d0d0;text-align:center">{$form|raw}</div> </div> removed {{if !member.member_id}}...{{endif}} from Template field, I suggest to adopt "Show to selected Group" option for filter by groups (so it's easier to manage and decrease confusion).
  7. not currently, I will do for future.
  8. for footer(?) change all data-widgetArea="header" header to the area of the widget like footer. or you would for other? yes I will post here when go to pc ?
  9. +1 ❤ (could be useful also have a history, permise to redirect on current furl avoiding "page not found")
  10. 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
  11. Thanks Adriano for take it, I have some questions before buy it: how are filled in your app the jobs offered? like place available, type/role of subject researched... and how is the form for acceptance/partecipate? how them are stored (status complete, stopped for new requirements, open... custom status)? are available a count of many jobs have each user managed/partecipate, with status of it? I like when you talk about location filter of the results. This is essentially to search near available jobs.
  12. My personal solutions: Must be a limit (or don't log) when a user try to download more x times same file on y days, to improve bandwidth and avoid this behaviour (cheat to win in downloads of the week) New block (if it is not exist) where count buyers not downloads Rework the queries and add group by member_id or ip if member_id is null...
  13. v1.0.2 Beta 2 bug fix groups changes was not stored now to edit the plugin require it is enabled. v1.0.2 Beta 3 bug fix close when click outside the popup exit, scroll, wait event works thanks to @topek and @dokdok for reports
  14. v1.0.2 Beta 1 Preview button on AdminCP Popup, title content close close on click, position & align, size, class name, animation in/out, message with ckeditor, template, last edit Modal, show & animations Rules, groups restriction & cookie remember Display when: scroll down (%,px) exit wait open on click Display where: referer & location Documentation, initial state some fix: removed bacalltoactionpopup column from core_members upcoming for 1.0.2: complete documentation with demos, add new transitions, pre-made template, your suggestions todo: improve ajax expirience, automatic check update.
  15. I am on 90% to release it, show here some screen
  16. {{if $comment->isFirst()}} [your ad code here use style="float:right;"] {{endif}}
  17. I am working on this, be patient
  18. I have added some feature... and tomorrow i will release it
  19. I do a check on the editor in the day and do you know, thank you.
  20. sorry for delay, what is the theme in object? to work it must include selector "#elContent" at least. send me a pm if you would leave me demo link o other details
  21. I like this plugin my next buy but could you integrate this request?
  22. Thanks for purchase, i leave the steps to fix it: Download the .xml file Edit .xml file, find text "ipsType_center" and remove. Save and upload into plugins module on AdminCP (I will send you on PM the xml with this edit)
  23. In progress, I will add also: Some template for popup with ability to custom inside editor (if possible) or a button for live preview. Display options: show after x seconds, when scroll down (%), exit page, autoclose after x seconds, transitions, button for close... Remove database column from core_members and replace it with cookie (like a guest), this avoid ajax call when close dialog (performance improvement, but a ugly idea for who would remember the choise).
  24. What's New in Version 1.0.1 Fix Avoid to refresh to show popup after edit (setcookie) (req) Show popup only to selected Groups.NEW Added support link on edit form, message to display last update. When write message use the IPS4 CSS documentation
  25. 1. Not currently but I will add this feature in the next version 2. When close browser the cookie is removed for guests while for registered members is hidden until you re-edit the message from the admincp. Thanks you for purchase it
×
×
  • Create New...