Jump to content

opentype

Clients
  • Joined

  • Last visited

Posts posted by opentype

  1. 7 hours ago, kmk said:

    Where I should set up to make appear the editor to create an article?

    Pages → [Your Database] → Fields → Permissions

    Make sure the users who should add/edit articles have permission to edit all the fields. 

    7 hours ago, NoGi said:

    Where is this particular template setting? In my database I only get the other 3:

    It appears, once you set the “Index mode” of the database to “show records like articles” in the database settings. 

  2. ·

    Edited by opentype

    5 hours ago, Bracer50 said:

    I'm having a few problems: 

    1: http://prntscr.com/dcdqy0  - My content running off of my page.

    2. http://prntscr.com/dcdsc4 - There's no boxes around the content.

     

    Regarding the boxes: The colors are all inherited from your theme. If your theme designer has made ipsAreaBackground_light transparent or identical to the background, then this is what the SuperGrid template will use as well. In order to change that you would either have to change your theme colors or give each SuperGrid box a specific background color (in the custom.css) to only affect the Pages template. 

    .SG_card { background-color:#333; }

     

    The overflowing text is a problem of the post itself. You pasted rich-text with tons of styling in there, including a width statement which forces a width of 1007px. You should clean up the post and only paste plain text and it will be resolved. It has nothing to do with my template. 

  3. 31 minutes ago, ququruku said:

    how to change default font color for article title in Front Page Template ?

    Those are regular H2 headlines using the default link color of your theme. So whatever your link color in your theme is, the SuperGrid templates will use. 

  4. ·

    Edited by opentype

    I see. 

    Yeah, the template is calling the default category row output at that point. I will have to do some testing to see if I can work around that without creating other problems. If it works, I will put it in the next update. It wouldn’t change much though. Basically just removing the icon and adding the Grid colors. So it’s more something for the to-do list, than for an immediate fix. 

  5. 15 hours ago, Joey_M said:

    Will you be releasing any more designs in the future separate to these @opentype? Just curious.

    Probably. I am open to suggestions. If you like the look of a certain WordPress theme and want something like that in Pages or of you have certain design problems with your Pages database … Let me know. I can check if there is a solution I can build. 

     

    9 hours ago, NoGi said:

    Great template. Quick question, how do I get the same format to apply for Subcategories listing view? 

    Make sure the sub-category itself is set to have the listing view inherited from the parent container. 

  6. 4 hours ago, kmk said:

    But, recently downloaded and was first installeded.....:mellow:

    As I said: It get’s the database ID added. That can be 2 or 5 or any other number, depending on the number of databases you already had. Don’t worry about it. It’s a feature, not a bug. :-) 

  7. 36 minutes ago, kmk said:

    I have a new installation, I want to ask if should be name end with    ..... 2......

    Yes, that’s normal. The database ID gets added every time you import an new XML file. So the templates don’t get overridden if you install it again or the next update. 

  8. 1 minute ago, ququruku said:
    
    {{$SG_fallback_image_url = 'https://url/someimage.jpg';}}

    work only for new articles or for those that already exists ? I cant get this working.

    Should work for every article. It’s a live check for every entry. Make sure the image URL is correct and that you are looking at the right template. That setting is available for the front page and the listing view and needs to be set in both individually. 

    If you still can get it to work, I would have to check it out in your ACP

  9. 1 minute ago, ququruku said:
    
    {{$SG_fallback_image_url = 'https://url/someimage.jpg';}}

    work only for new articles or for those that already exists ? I cant get this working.

    Should work for every article. It’s a live check for every entry. Make sure the image URL is correct and that you are looking at the right template. That setting is available for the front page and the listing view and needs to be set in both individually. 

    If you still can get it to work, I would have to check it out in your ACP

  10. 1 hour ago, Netherlord said:

    Will you be working on making these templates mobile and tablet friendly??

    They most certainly are already! If you see specific problems, please show or describe them clearly, so I can check it out. 

  11. Posted

    Support topic for: 

    Pages SuperGrid is a set of Pages templates and a complete solution to make your Pages databases (with articles, directories and so on) appealing and engaging. 

    What’s needed: 

    • IPS 4.1 in its most recent version with the Pages application
    • A pages databases that uses the stock Record Image field and has images with a sufficient resolution uploaded through that field. 
      (Technically, the templates also work without images, but it’s an image-centered design and works best when most or all records have images.)

    Which templates are included:

    • A beautiful grid-based Front Page template with two records featured at the top — for when your database is set to article mode.
    • A beautiful grid-based Listing template replacing the dull forum listing design — for when you open a category or have a database without categories.
    • A unique Record View template with a large header image — for when you open a specific record.
    • A category listing template – in case you use more than one category. 

    2 Bonus Features included: 

    Twitter Card support! Yes, you read that correctly! The SuperGrid record view template adds Twitter Card support to your records. You just have to provide your Twitter handle. Tweets with images have a significantly higher click rate and with Pages SuperGrid any link to an article in your database (which has a record image) will automatically get a beautiful Twitter Card like this:

    twittercard.png

    Block template! Create blocks anywhere on your site – pointing to your database – and make them as beautiful as the database itself. A block template with options is included in the package. 

  12. Two question to be sure I understand this correctly:

    1. This is a bulk-change, not an override of the regular user subscriptions, right? So if I subscribe members this way, they can then unsubscribe again, correct?
    2. Does this work only for existing or also for future members? So if I set a group to follow a specific forum, will a new member added to the group later be automatically subscribed too?
  13. This doesn’t seem to work anymore with a fresh install on the latest release. There is no Edit button to set the plugin up after installation and when the widget is placed on a page it doesn’t show anything. 

  14. I recommended it too a while ago. Makes perfect sense to support these Twitter meta tags along with the ones Facebook looks for. Tweets with images are so much more likely to get clicks than just plain links. 

    If you can’t wait: it’s surprisingly simple to add it to certain templates. For example, I added this to my video database in Pages:

    {{\IPS\Output::i()->metaTags['twitter:card'] = 'summary_large_image';}}
    {{\IPS\Output::i()->metaTags['twitter:site'] = '@TypographyGuru';}}
    {{\IPS\Output::i()->metaTags['twitter:title'] = $record->_title;}}
    {{\IPS\Output::i()->metaTags['twitter:description'] = 'Watch this video in the collection of the best typography videos on Typography.Guru';}}
    {{\IPS\Output::i()->metaTags['twitter:image'] = (string) \IPS\File::get( 'cms_Records', $record->record_image )->url;}}

     

  15. On 24 June 2015 at 9:35 AM, AutoItScript said:
    • Add/Change conf_global.php to include 'sql_utf8mb4' = true
    • In the ACP goto Support -> Something is not working
    • It will spit out hundreds of MySql commands

    I just tried this on a test installation, but changing the conf_global did not seem to do anything at all. Is that really all we would have to do to start this process?

  16. I agree to the feature request. 


    However, I would suggest that you stick to calm factual descriptions for such requests. IPS will judge the feature request by itself. It doesn’t need red, exclamation marks or exaggerations (i.e. “it’s useless”). 

    If it helps you as a work-around: On my 3.4 site I monitor Wiki article changes by having set up blocks which are ordered by last change. It’s much easier to spot changes this way. 

  17. ·

    Edited by Ralf H.

    IPS not only supports it but is new standard for IPB. At this point it looks like anyone converting from 3.x to 4.x will automatically be converted to the new utf8mb4 standard. However those of us that was so inclined to convert prior to IPS adding this auto conversion to utf8mb4 will be stuck on utf8 for the remaining time were utilizing IPB.

    Stop spreading these false information. The UTF8 type is a user-choice during installation or upgrade. There is no “automatic” conversion, because that wouldn’t even work, e.g. when your database runs on MySQL 5.1. In addition, your are not “stuck” with UTF8. Its YOUR MySQL database on YOUR server. You can do whatever you want with it. If you are not able to, maybe you should better move to IPS’ clould solution. But don’t expect IPS to become your server admin. 

  18.  

    What Marcher said. It’s really a server-level thing that has nothing to do with the actual IPS software. If you choose to self-host, you should be able to maintain your database and set such things yourself or let it do through someone else. IPS only guarantees that 4.0 works both on UTF8 and UTF8mb4. It’s not their job to maintain your server. 

  19. ·

    Edited by Ralf H.

    Do we have to convert to  UTF8MB4  ?

    No. The scenarios are:

    • MySQL <= 5.1
      • You cannot use UTF8MB4 at all
    • MySQL >= 5.5
      • UTF8. Certain characters (like certain Emoji) won’t be supported and could cause problems in earlier releases. Therefore the most recent version now warns you about this when you try to include such characters.
      • UTF8MB4: You are free to use any characters. 
  20. "Google Maps: JavaScript Maps API v2 will shutdown on November 19, 2013"

    Indeed. My member map has turned into a white page.

    Hoping for an update. I have been trying to push my users into adding their location and now I feel bad about not being able to deliver that map anymore.

  21. Posted

    Hiding/deleting posts is always a tricky issue. It's necessary, but it can create new discussions, because the users who's posts got hidden can get pretty mad.

    On Facebook Pages this is solved quite nicely. If you hide a post, no one will see it anymore BUT the author. So provoking posts will not cause any trouble, but the author won't get mad, because he/she will still see the post.

    This might be a nice option to have on IP.Board as well.