Jump to content

chilihead

Members
  • Posts

    6,750
  • Joined

  • Days Won

    13

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by chilihead

  1. Mix/max override and tag cloud, sweet! Will be using this soon, thanks for the min/max override, I suggested that awhile back.

    One problem I have is tags are not shown in the topic listings (forum view) on mobile, could this possibly add them, or, can we add the tag cloud there? I will be using the closed system as a category list of sorts, so need members to be able to click the defined tags there. Thanks!

     

     

  2. Mix/max override and tag cloud, sweet! Will be using this soon, thanks for the min/max override, I suggested that awhile back.

    One problem I have is tags are not shown in the topic listings (forum view) on mobile, could this possibly add them, or, can we add the tag cloud there? I will be using the closed system as a category list of sorts, so need members to be able to click the defined tags there. Thanks!

     

     

  3. On 1/3/2016 at 1:57 PM, chilihead said:

    What I think can be improved is filtering the stream you are in instead of creating a new stream. We can set defaults and rely on member creation, and yes, there is edit/update, but 3.4 had the pane on the left where you could filter on the fly. If you can't do live filters, maybe there is some middlegound here. Like, a menu could actually contain member or site defaults (saved by member). Say, top 5. So instead of having the filtering abilty on the left, you have your top 5 presets (streams) readily clickable in the stream. I'm not sure where this would fit layout-wise, perhaps horizontal is best so at the top. But it would save clicks from going to the menu, and also, for perception's sake, creates "filters." Most members will have a few streams they bounce between, and having those right there would be great.

    I'd like to add it is a pain to use different streams on mobile. Too many menu clicks (4 clicks to My Activity Streams). Filtering or a stream menu in the streams (like stated above) would be great for full site and mobile both. Or some solution to click between streams. Thanks

  4. @Lindy I like streams a lot especially the ability to stream all content in one list instead of just forums etc. My Blogs are pretty much dead but when I upgrade to 4 finally I am going to jump start them, and then members will realize that the discovery is much better and hopefully they will start using them instead of making "bloggy" type forum posts. Same for status updates, and all content. The method of discovery is much better when I felt like in 3.4 it was hidden (except for forums, which made everyone only want to use forums). This, overall, makes for better social engagement.

    What I think can be improved is filtering the stream you are in instead of creating a new stream. We can set defaults and rely on member creation, and yes, there is edit/update, but 3.4 had the pane on the left where you could filter on the fly. If you can't do live filters, maybe there is some middlegound here. Like, a menu could actually contain member or site defaults (saved by member). Say, top 5. So instead of having the filtering abilty on the left, you have your top 5 presets (streams) readily clickable in the stream. I'm not sure where this would fit layout-wise, perhaps horizontal is best so at the top. But it would save clicks from going to the menu, and also, for perception's sake, creates "filters." Most members will have a few streams they bounce between, and having those right there would be great.

    Otherwise, streams are are great tool and I am looking forward to getting my members to actually use other apps! ;) 

    And as @tekguru mentioned, yes, the first bug he posted needs attention, as well as this bug, and the first unread setting which I believe is coming soon.

    Wish list:

    I would like to reorder streams in menu.

    I would like to set AA as site default (can't, not sure if bug).

    I would like to be able to add the "Likes" etc. to another stream to clone AA but customize.

    Thanks!

  5. 2 hours ago, Square Wheels said:

    If you hold your phone vertically (which these photos are) this is an incorrect orientation as the phone is reading it as horizontal and marking it as such. Then when it's uploaded it looks as it does.

    This person is thinking video, it is not incorrect to take a portrait! That's why it is called portrait vs. landscape. But with cameras you are physically holding the camera sideways, so the way to fix is edit. Newer technology fixes this for you as many go from phone to site—tag is set with camera, destination must detect it.

    2 hours ago, Clover13 said:

    OK so they are saying it's a setting in the phone

    No, the phone knows how you held it so sets an orientation tag. This site does not pick up the tag and uses the default setting.

    2 hours ago, Square Wheels said:

    Best suggestion would be to preview the image on their computer and correct it (most operating systems have an image viewer which you can rotate an image) prior to uploading it till a more elegant solution can be made within the suite.

    Hopefully soon because that is awkard and not keeping up with technology, everyone uses their phones. :) 

  6. I haven't done a test upgrade yet so maybe someone can answer as I am just wondering... In 3.4 when you upload an image you can put in the post or leave as thumb. In 4.0 you have to put in post or it does it for you (but there was a bug once where they stayed hidden if you didn't do it). So I am wondering if the "thumbs" in 3.4 correctly get inserted in the post or are hidden only seen with edit or discarded. I could test myself but not at the point yet but had a feeling they might not be inserting since there was a bug even in 4.0 not that long ago. Thanks if you know.

  7. Would it be possible for members to pick a video to be featured on their member page? So when you visit a member page you can view and rate the video right from there. Would be a great function, or some sort of showcase widget that rotated their videos, on their member page. Thanks!

  8.  

    This app allows you to override the tag mode on a per-forum basis, so you can have it closed in one place and open in another, and it adds a 'prefixes only' mode. Currently it does not let you change the minimum/maximum tags per forum, but I'll take that into consideration.

    Have you considered this yet? For example, in Blogs, I could set closed system, and 1 tag maximum and use it like categories, and members could click the tags to find all the blogs on the pre-defined subject.

    But I would want to use more then 1 tag in other areas.

    Would be great in Forums, per forum.

    And is there any development in the special forum settings being available in the other apps? Can Blogs have a mandatory tag or prefix?

    Thanks!

  9. And regarding the grid view for article listings: while that is not a default option, it only needs a small template change, since a responsive grid is already in the CSS. 

    So to have a grid view for articles:

    1. Add a custom database template in the Pages’ template manager. Make sure it’s of the type “Featured Records”. Also make sure you assign it to your article database. Also call it “Article Grid” (that name is later used in the code). 

    Bildschirmfoto_2015-07-11_um_17.47.19.th

    2. Open the “index” template of this newly created template group. 

    Replace this part:

    {{if count($articles)}}
    		{{foreach $articles as $id => $record}}
    			{template="entry" app="cms" location="database" group="article_grid" params="$record, $database"}
        {{endforeach}}
    {{endif}}

    With this:

    {{if count($articles)}}
        <div class='ipsGrid ipsGrid_collapsePhone'>
    		{{foreach $articles as $id => $record}}
                <div class='ipsGrid_span6'>
    			{template="entry" app="cms" location="database" group="article_grid" params="$record, $database"}
                </div>	
        {{endforeach}}
        </div>
      {{endif}}

    That’s it. Your articles are now displayed as a grid which automatically collapses on smaller screen. 

    And a bonus for all those who want the 2x1x1 layout from 3.4 – use this instead:

    {{if count($articles)}}
        <div class='ipsGrid ipsGrid_collapsePhone'>
    		{{foreach $articles as $id => $record}}
                {{if ($id == 0)}} <div class='ipsGrid_span12'>
                {{else}}<div class='ipsGrid_span6'>
                {{endif}}
    			{template="entry" app="cms" location="database" group="article_grid" params="$record, $database"}
                </div>	
            {{endforeach}}
        </div>
    {{endif}}

    Bildschirmfoto_2015-07-11_um_18.06.34.th

     

    This is a good example of why I'd like to be able to highlight/mark posts, not just follow topics! Like marking as "Favorite."

    For now, I will just quote it for later, thanks.

  10. Thanks!

    Looks like I'll be getting this unless IPS does it first. Not on 4 yet, but will get this when I upgrade. :)

    I like that it works with the tag system in place. If we ever need to remove it, what would happen? Existing tags/prefixes would still be in place but would follow the global settings of IPS, correct?

×
×
  • Create New...