Jump to content

jair101

Clients
  • Posts

    1,217
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    jair101 reacted to Martin A. in Member Map   
    Create the content in manual PHP mode.
    //<?php $embedimage = \IPS\File::get( 'membermap_MarkerStaticMap', $content->embedimage )->url; $return = "<p>{$content->author()->name} checked in at {$content->location} ({$content->_latLngToDMS})</p>"; $return .= "<p><a href='{$content->url()}'><img src='{$embedimage}' alt=''></a></p>"; return $return; Result:

  2. Like
    jair101 reacted to Adriano Faria in Ignore Topics   
    Yeah, that was it. I forgot to add this new option in the search hook. Sorry.
    What's New in Version 2.1.1.1:
    Fix/add the new setting value in the search method
  3. Like
    jair101 reacted to Adriano Faria in Ignore Topics   
    What's New in Version 2.1.1:
    Added option to select ALL FORUMS in the settings.
  4. Like
    jair101 reacted to Ryan H. in Advanced Tags & Prefixes - IPS 4.x   
    Update is out.
    @jair101: It turns out my copy had some fixes for special chars on tag management from some months back. They're included.
    Notes of caution on this update:
    Clubs: Club forums are just like regular ones, except for the part where they aren't like them in any way. You can edit them in the admin by going to Clubs > {edit club} > Forums > {edit forum}. The normal tag/prefix settings will now appear there. These settings cannot be changed from the frontend by the club owner. I have no intention of changing that. Tag quick-edit: This should respect context settings now (forum-specific tag restrictions, etc.). BUT IPS bakes prefix handling into that same input, and gave me no way to change that. That means the prefix can be changed from the tag list with no regard for permissions or prefix restrictions. The only alternative is having tag quick-edit unset any prefix entirely, which seemed worse. There's nothing I can do about it. Mage Tags: I revamped the manage tags section out of necessity. The old DB table it was using before gets worse with every release. The new one should work more reliably (no more page count bug!), but I have no idea how well it will scale for sites with thousands or millions of tags. If the answer is 'not well', my ability to improve that is probably limited.  
    What's New in Version 3.1.9
    This release targets IPS 4.2. Backwards compatibility to 4.0 is likely, but not guaranteed.
    Added tentative support for Clubs forums (settings can be edited via Club forums in admin). Added tentative support for tag quick-editing on frontend. Note: Prefixes fall back to default functionality in that context; this is unavoidable. Refactored Manage Tags section to fix SQL grouping errors and paging quirks. Improved caching performance. Fixed some instances of tag case insensitivity. Fixed lingering tag edit/delete encoding issues.
  5. Like
    jair101 got a reaction from Fierce God in IPS Rules Application   
    That should be something in the line of:
    Create custom data field attached to member. Call it "Logged in today" and make it a yes/no value with default value to No. The rule then should look like this:
    Event: Member logged in to the system
    Condition: Check if value of "Logged in today" is NO
    Action 1: Credit a point
    Action 2: Set the value of "Logged in today" to YES
    You will need another rule that resets all YES back to NO at 23:59. Create custom action attached to members that runs on 23:59 each day, set this to a new event, check if the value is yes, then switch it to NO. 
    An issue that you may encounter: I am not sure how logged in event is triggered when the user has clicked the "remember me" checkbox, whether it counts as a new login or as long as the password is remembered no user login is counted. You will have to investigate this. 
    The reactions system that replaced the like system in 4.2 is written in a different way and it is impossible for Rules to work with it at this point. Issue has been raised with IPS, they said they are thinking about it. I guess thats the reason both 2 and 3 are not working at the moment. 
  6. Like
    jair101 got a reaction from Fierce God in IPS Rules Application   
    This probably comes from the fact I mentioned earlier - that a new topic is also a new post so the rule is triggered twice when a new topic is post. In this case, your regular users will get 2 points and exclusive will get 4. Please try if you post just a reply if it will give you 2 points as expected. You can also check the contents of the debug log, I see that you have it enabled. 
    To get around this, you can exclude Topics from the rule - Add another condition that is "Content is of certain type" and click the NOT button. On the next screen select Forums / Topic (Content Item). This way it should ignore new topics, but give points for the posts...which are also the topics, so you should be set! Haven't tried it in practice, but give it a try. Playing with this app is half the fun. 
    Now that I think of it, this will probably conflict with the action that is triggered when conditions are not satisfied...I can't think of a way to get around this right now. Maybe in the end you will have to create a different rule for each content type...
  7. Thanks
    jair101 got a reaction from Fierce God in IPS Rules Application   
    I am still not sure what your overall goal is. If you want to give one point for each type of content and two points for exclusive, then yeah, you can remove most of the rules and just leave one that has "any content is created". Keep in mind that topics and posts can be counted twice, i.e., when you create a topic, thats also a new post. 
  8. Thanks
    jair101 got a reaction from Fierce God in IPS Rules Application   
    Yes, you should have only one rule giving points for certain events, they are not cancelling each other and all of them are effective. Disable all others and try just this one to see if it works fine. Just from the titles I have no idea how your actions are setup. 
  9. Thanks
    jair101 got a reaction from Fierce God in IPS Rules Application   
    The trick here is to work with the "conditions" part of the rule setup and create two actions - one when condition is satisfied and one when it is not. So basically you will have something like this:
    Event: A topic is created
    Condition: A member is in certain member group (Exclusive in your case)
    Rule Action: Credit or debit a point balance, Credit only: 2 points to the topic author. 
    Else Action: Credit or debit a point balance, Credit only: 1 point to topic author
    This way if a member is part of exclusive group he will get two points per created topic, everyone else will get one point. I haven't tried it myself, but it should work. Let me know if something is not clear and I will provide step by step instructions. 
     
  10. Like
    jair101 got a reaction from Fierce God in IPS Rules Application   
    Let me see if I understand this correctly. You have various rules that give members points - like 1 point per new topic, 1 point per reply, etc. You want the same rules to give double points to member of a certain member group - 2 points per topic, 2 points per reply, etc. Is that correct?
  11. Like
    jair101 got a reaction from Fierce God in IPS Rules Application   
    Count me in for a club here. Kevin's website already has a lot of areas to discuss, but not much movement there. I think with a club here there will be much larger exposure and more customers will be attracted, which in the end will benefit everyone. 
  12. Like
    jair101 reacted to Adriano Faria in Custom Username Icon   
    What's New in Version 1.0.1:
    Will display the fontawesome icon title beside the icon

  13. Like
    jair101 got a reaction from Adriano Faria in Custom Username Icon   
    I was thinking something like this:

    This way I can find that I want this icon on the font awesome website, then I will simply use browser search (ctrl+f) to locate it in your list. I thought it might be easier to make it this way then creating a dedicated table with search function, etc. 
  14. Like
    jair101 reacted to Fosters in Bookmarks - Support Topic   
    yes
  15. Like
    jair101 reacted to Fosters in Bookmarks - Support Topic   
    It won't It sends it only for public
     
     
    This was already suggested, but unfortunately the built in truncate function in IPS which I use ( https://invisioncommunity.com/4guides/themes-and-customizations/css-framework/typography-r98/ ) doesn't support it. 
    I'll see how easy it is to replace it with something own which supports toggle.
     
  16. Like
    jair101 got a reaction from Fosters in Bookmarks - Support Topic   
    Few suggestions after I bought it and tried it for a bit:
    1. I am not sure if private bookmarks send notifications to the author of the post or not, but they probably shouldn't. 
    2. When checking a bookmark in "My bookmarks" I believe it should have at least collapse button, not only expand. On some communities there are posts few pages long and expanding such a post in bookmarks by mistake will hide all other bookmarks, not having the ability to collapse it back makes it much worse. In fact I believe in My bookmarks there should be only link to the post/image/article, etc. with the note that I have added. This will keep the things clean and tidy, like a browser bookmarks. 
    I would post these in the tracker, but your website is not accessible at the moment. 
  17. Like
    jair101 reacted to Martin A. in Member Map   
    Update: Found a way to compress the data. Got it down to 10% of the original size. Going to test it out a bit before releasing it.
     

  18. Like
    jair101 reacted to Martin A. in Member Map   
    "&group=calendar" should work. Use the name that appears in the layer list in the map.
    I see what's going on. You're hitting the browser storage limit. In Chrome that is 10MB (you can test that here). It is able to save the first 10 cache files, but then the 11th and 12th would push it over the limit. The 13th only just fits. I'll have to explore some other options, or at least see if there's a way to compress the data before storing it.
    There you have it, @jair101. 5200 markers is the limit.
    @VR6Pete: Sure this isn't happening to you as well?
    I'll take a look at this again for one of the upcoming versions. Let me just fix the marker issue first.
  19. Like
    jair101 reacted to Martin A. in Member Map   
    I would say yes, to a certain point. The server can cope with it without a problem. At around 4000 markers is switches from rebuilding the disk cache on demand, to running them as a background queue (to prevent excessive memory usage). The clustering effect should give the end users a good experience no matter the performance of their computer.
    There's still a lot of data for the browser to process before the map is usable, but we're not talking more than a couple of seconds, a bit more if the data needs to be downloaded from the server (it caches the data in the browser).
    It's not publicly available, no. But contact me and I'm sure we can make a deal. As a general rule I try not to make custom builds or plugins, as there's too much to keep track of. 
    I would like to see this myself. Are the markers being updated often? With the amount of markers you have, the disk cache is rebuilt with a background queue, and if you're trying to access the map in the middle of that process you are going to miss some information.
    I can add this. It's sort of already there, as part of a custom request. Add "&group=<groupName1>,<groupName2>" to the URL to see how it functions. But I'll add it as a marker group setting as well.
    I've seen this request, but I don't see why this is a big risk? In the event of a database issue, losing vital content such as members, topics and posts is a bit more "priceless", isn't it? And there's no export tool for those. Do a regular database backup, and you'll be fine.
    I'm still open to the whole idea of exporting the markers, but don't treat it as a backup option. It is for instance not possible to import markers to the members group, due to it being a bit special compared to the other "custom" groups.
    The marker ownership would also be lost if you imported an export, as I can't attach the member ID to the export in case you were to import it to a different site. All markers would then end up in wrong hands, or "hands" that don't exist.
  20. Like
    jair101 reacted to VR6Pete in Member Map   
    I've got 10,000 + markers, seems fine...
  21. Like
    jair101 reacted to joaocb in Member Map   
    I have more than 5.8k markers for members alone, and then several other categories with 200+ markers (and growing).
    I started with removing the new side bar since it wasn't doing anything useful for me, and I believe it made the experience of opening the map quite painful.
    The issue that I have currently is that usually the map doesn't display all the markers, so you need to force the refresh of the information and reload the page several times until you see everything. I know how to do it and what should be there, but a member of the community might simply access it and see just a small part of the markers. It would be great if we could choose which marker's category should be active by default and which should only show the markers after the member activates the respective radio button.
    Another huge risk is that today, there's no option to export the markers... so if you come up to a problem with the database or the application, you may simply lose all the markers that you uploaded with so much work... I already suggested to add this functionality to the application, since the import is available but not the export option.
    Hope it helps.
    Thanks!
    PS - just to clarify, I love the application, but I just wish it could have a few more options to make it more powerful and easier to use
  22. Like
    jair101 reacted to Fosters in Bookmarks - Support Topic   
    No, not yet. I have to decide how I'm going to make this exactly. I'm also not sure why people would want to export and then import their stuff... It just doesnt make any sense in my eyes. 
    But you should be able to import the exported html file into your browser already. 
  23. Like
    jair101 reacted to Fosters in Bookmarks - Support Topic   
    No, ATM he won't lose them. He'll lose access because of the permission, but once he gets back to the group which is allowed to use bookmarks, he'll see all his already existing bookmarks. 
  24. Like
    jair101 reacted to Fosters in Bookmarks - Support Topic   
    Oh, there will be a widget in the next release.  I was concerned by the permissions, but since we're showing "all public bookmarks" on a users profile, we could show the same results in the widget.
  25. Like
    jair101 reacted to Fosters in Bookmarks - Support Topic   
    Fosters Crew is pleased to present the newest version of Favorite Content Bookmarks v1.1.0, available immediately in the IPS Marketplace for download.  The newest version of Bookmarks takes community bookmarking to the next level with a major feature: Categories.  
    Categories will help your community's users arrange and organize their personal list of bookmarks.  Before, all bookmarks were clumped together into a single, long list.  Now, users can define new categories to sort and categorize their bookmarks as needed.  Categories can be named anything your user's want, and can include a mixture of both public and private bookmarks.  Users will see the new bookmark categories on their "My Bookmarks" page.  

     Categories can be added in two different ways:
    Add bookmark - As soon as a user bookmarks an item, options will appear to either save into an existing category or to create a new category.  This allows users to create categories 'on-the-fly' during the bookmarking process.   My Bookmarks - On the My Bookmarks page, users can manage their bookmark categories by adding new bookmark categories. This allows them to manage and add multiple categories from a single location to organize and view all of their bookmarks together. Categories can be edited and deleted:
    My Bookmarks - On the My Bookmarks page, users can manage all of their bookmark categories to add, edit, and rename.  This centralized location allows users the ability to manage all of their categories together from a single location.  


    Several other enhancements and bug fixes have been released in v1.1.0, so we encourage you to check out the latest version or pick up a copy in the IPS Marketplace!  The application is still a work-in-progress, so please share your feedback and bug reports in the Support Topic here and Tracker.  
×
×
  • Create New...