Jump to content

opentype

Clients
  • Posts

    9,901
  • Joined

  • Last visited

  • Days Won

    134

Reputation Activity

  1. Like
    opentype reacted to Ramsesx in Pages SuperGrid support   
    Show Avatar yes/no, Image aspect ratio would be the most important in my case.
  2. Thanks
    opentype got a reaction from gabs007 in Pages SuperGrid support   
    Yes. Essentially you delete it all, download the latest version and install it again. 
  3. Thanks
    opentype got a reaction from emeric73 in Pages SuperGrid support   
    That theme you use is a bit aggressive in changing core CSS styles. You can put this in that theme’s custom.css
    .SG_record_right_with_image { background-color: #fbfbfb !important; }  
  4. Thanks
    opentype reacted to Adriano Faria in Best Answer on Discussions Forums   
    What's New in Version 1.0.1:
    Added support to Clubs
  5. Thanks
    opentype got a reaction from Tripp★ in Pages SuperDocs support topic   
    There is only one collapsable level at the moment. That’s intentional. It’s supposed to show a lot instantly without having the user to open sub-levels over and over again. 
  6. Like
    opentype got a reaction from Meddysong in Pages SuperGrid support   
    I wouldn’t know how it could even cause that. The plugin doesn’t do anything but to store values, which itself is handled entirely through the core software. The plugin isn’t called at all to do anything and doesn’t have MySQL queries. So if you don’t open the plugin settings, it literally can’t do anything. If you loose plugin settings, I am pretty sure it must have a different cause. 
  7. Like
    opentype got a reaction from Martin A. in Member Map   
    That “wave” shows where it’s day and where it’s night. ;-) 
  8. Haha
    opentype reacted to Nathan Explosion in Member Map   
    Flat-earthers cry out in pain!!!
  9. Like
    opentype reacted to Yurri in Pages SuperHelp support topic   
    Hello. Thanks for good and very easy app.
    Please, add "READMORE" link, if it possible.
  10. Thanks
    opentype got a reaction from Tripp★ in Clubs Enhancements   
    He is talking about the “Change owner” link. Guess the question/confusion/problem is, who has access to it. Just admins? Every club owner? If any club owner would have that option, it could cause problems. Exploit is certainly not the right word for that though. 
  11. Like
    opentype reacted to Adriano Faria in Clubs Enhancements   
    Yes, Admins and Club  Owners.
    Ok, I'll a setting to admins allow Club Owners to use it, just like already happens with ADD MEMBERS:

  12. Thanks
    opentype got a reaction from rookiegirl in Pages SuperTopics (Support Topic)   
    It’s a design template for Pages blocks called on the page through the Pages Custom Blocks widget. 
    They add image attachments to their posts. 
    In the settings for the Pages block, as with any other Pages block. It’s an IPS core feature. 
  13. Thanks
    opentype got a reaction from rookiegirl in Pages SuperTopics (Support Topic)   
    I comes from the first image attachment of the topic/post. If there is none, it stays blank (there is an example on the product page) or you set up a fallback image for all blank posts. 
  14. Thanks
    opentype got a reaction from Drakior in Clubs Enhancements   
    There are some notification settings you can turn on, yes. Both for yourself or new accounts. 

     
  15. Like
    opentype got a reaction from Adriano Faria in Clubs Enhancements   
    There are some notification settings you can turn on, yes. Both for yourself or new accounts. 

     
  16. Thanks
    opentype got a reaction from rookiegirl in Clubs Enhancements   
    There are some notification settings you can turn on, yes. Both for yourself or new accounts. 

     
  17. Thanks
    opentype reacted to Adriano Faria in Best Answer on Discussions Forums   
    Yes, as expected, works fine:
     
    EDTI: sorry; it recorded a youtube video audio too.
  18. Thanks
    opentype got a reaction from Duken in Pages SuperHelp support topic   
    I don’t see any problems on your site. The “Conclusie” is now on spot 7, both in the record listing and the record view. That’s where the bug was. Moving it to the last spot is only defined through your database ordering settings. I don’t control that. It’s up to you to edit for example the publish dates, if your database is ordered by that field. 
    You can also add a hidden ordering field and let the database use that. Whatever works best for you. It’s how Pages works. 
  19. Thanks
    opentype got a reaction from Duken in Pages SuperGrid support   
    That’s SuperHelp, not SuperGrid.
    An update with a fix was released yesterday. It fixes the display in the Record View. If you want to change the order in the listing view (your first image) you need to change your database order settings. 
  20. Thanks
    opentype got a reaction from kmk in Pages SuperHelp support topic   
    Yes. I can’t change that. It’s how IPS set it up. But it’s an easy process. You just select each of the 3 SuperHelp templates and hit delete. Just takes seconds. 
    P.S. You only need to install the latest update if that bug affected you. You can skip it, if you don’t see problems with the record ordering. 
  21. Like
    opentype got a reaction from Meddysong in Pages SuperHelp support topic   
    Yes. I can’t change that. It’s how IPS set it up. But it’s an easy process. You just select each of the 3 SuperHelp templates and hit delete. Just takes seconds. 
    P.S. You only need to install the latest update if that bug affected you. You can skip it, if you don’t see problems with the record ordering. 
  22. Like
    opentype got a reaction from Meddysong in Pages SuperTopics (Support Topic)   
    Sure, it’s technically possible, but for the reason you mention it would be a rather messy implementation. The number of items would always go up and down and could even be zero. Not sure I want to add it this way unless there is really strong demand for it. I already added the fallback option in case users wouldn’t like empty cards. 
  23. Thanks
    opentype reacted to Steph40 in Pages SuperList (Support Topic)   
    Thanks for making this, will make my life a little easier
    Will try it tonight after work, Thanks again.
  24. Thanks
    opentype reacted to Fierce God in Pages SuperList (Support Topic)   
    @opentype 
    You are awesome for making this
    i'm creating a custom landing home page with this, a featured member block, and a featured youtube content with this
    there is so many options for this to be used for, it is crazy!
    Thanks for making this...us page app noobs really appreciate it
    will make sure to post it in review too!
  25. Thanks
    opentype got a reaction from Fierce God in Pages SuperList (Support Topic)   
    Support Topic for …
     
    Code examples for the custom display field settings:
    Turning an URL field into a buttom:
    {{if $formValue}} <a href="{$formValue}" class="ipsButton ipsButton_important ipsButton_fullWidth">Buy now</a> {{endif}} Create a super large text, e.g. for highlighted pricing information:
    <p class="ipsType_veryLarge">{$value}</p> Highlight a checkbox field status in different colors (here green for yes, and red for no):
    {$label}: {{if $formValue=='1'}}<span class="ipsBadge ipsBadge_positive">Yes</span> {{else}}<span class="ipsBadge ipsBadge_negative">No</span>{{endif}} Do the same with checkmark symbols instead of text:
    {$label}: {{if $formValue=='1'}}<span class="ipsBadge ipsBadge_positive ipsBadge_icon"> <i class='fa fa-check'></i></span> {{else}}<span class="ipsBadge ipsBadge_negative ipsBadge_icon"> <i class='fa fa-times'></i></span>{{endif}}  
×
×
  • Create New...