Jump to content

kmk

Clients
  • Posts

    3,100
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Like
    kmk got a reaction from sobrenome in Wiki-like-editing is useless at this moment   
    +1
  2. Like
    kmk got a reaction from IP-Gamers in Wiki-like-editing is useless at this moment   
    +1
  3. Like
    kmk reacted to Hegnauer.io in Wiki-like-editing is useless at this moment   
    The two biggest things for our community would be:
    Alert people watching the entry when something is edited A per-database option to hold edits for moderation; the entry remains unaltered until a moderator approves it through the moderator area (the same way existing moderator approval functions)
  4. Like
    kmk reacted to IP-Gamers in Add a new area for widgets.   
    Is there a quick way to add a new area for widgets? For example, between sections.

  5. Thanks
    kmk reacted to Daniel F in Clubs features permission   
    We have an internal suggestion for this.
  6. Thanks
    kmk got a reaction from Ay hazea in Collections Support Topic   
    Hi, where I can find a demo? 
  7. Like
    kmk got a reaction from Noble~ in Stronger request   
    That is why we can hope we will have more improvements and innovations, a wonderfull community👩‍💻
  8. Thanks
    kmk reacted to Jordan Miller in Stronger request   
    Awe come on. @kmk is just trying to offer feedback / suggestions to make IPS a better place. 🙏 
  9. Like
    kmk got a reaction from Jordan Miller in Stronger request   
    1. Give modern improvements to Commerce, UI and UX.
    2. Convert Commerce as feature of Clubs.
    3. Add chat module or convert support as livechat feature.
    Community contents + Community e-commerce, IPS can be more aggresive and give to our community more innovation 
  10. Thanks
    kmk reacted to WP V0RT3X in Grid card stylish   
    In this case you don't need CSS edits, the code above is the modified template to make the card look like on the second screenshot.
    Just replace the whole forumGridItem template with that. If you don't like it, revert it.
    If you want to hide something via CSS it looks like this...
    .whatever { display: none; }  
  11. Thanks
    kmk reacted to WP V0RT3X in Grid card stylish   
    It's all in the template forumGridItem ...
     
    {{if $forum->can('view')}} {{$lastPost = $forum->lastPost();}} {{$club = $forum->club();}} <div class="ipsBox ipsBox--child cForumGrid {{if \IPS\forums\Topic::containerUnread( $forum ) && !$forum->redirect_on}}cForumGrid--unread ipsDataItem_unread{{endif}} {{if !\IPS\forums\Topic::containerUnread( $forum ) && !$forum->redirect_on}}cForumGrid--read{{endif}} {{if $forum->redirect_on}}cForumGrid--redirect{{elseif $forum->forums_bitoptions['bw_enable_answers']}}cForumGrid--answers{{elseif $forum->password}}cForumGrid--password{{else}}cForumGrid--forum{{endif}}" data-forumID="{$forum->_id}"> <!-- Hero --> <div class='cForumGrid__hero'> <!-- Clickable area --> <a {{if $forum->password && !$forum->loggedInMemberHasPasswordAccess()}}href="{$forum->url()->setQueryString( 'passForm', '1' )}" data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="forum_requires_password" sprintf="$forum->_title"}'{{else}}href="{$forum->url()}"{{endif}} class='cForumGrid__hero-link' aria-hidden='true'> {{if $club and ! $forum->card_image}} {{$coverPhoto = $club->coverPhoto( FALSE );}} {{$cfObject = $coverPhoto->object;}} {{if $coverPhoto->file}} <span class='cForumGrid__hero-image' role='img' style="background-image:url('{$coverPhoto->file->url}')" aria-label='{$forum->_title}'></span> {{elseif ! empty( $cfObject::$coverPhotoDefault )}} <span class='cForumGrid__hero-image' role='img' style="background-color: {$coverPhoto->object->coverPhotoBackgroundColor()};background-image:url('{resource="pattern.png" app="core" location="global"}')" aria-label='{$forum->_title}'></span> {{endif}} {{else}} <span class='cForumGrid__hero-image' role='img' {{if $forum->card_image}}style="background-image:url('{file="$forum->card_image" extension="forums_Cards"}')"{{endif}} aria-label='{$forum->_title}'></span> {{endif}} <span class='cForumGrid__hero-image-overlay'></span> </a> <!-- Forum info --> <div class='cForumGrid__forumInfo ipsFlex ipsFlex-ai:end'> <!-- Title and post count --> <div class='ipsFlex-flex:11'> <h3 class='cForumGrid__title ipsType_reset ipsTruncate ipsTruncate_line'> {{if $forum->password && !$forum->loggedInMemberHasPasswordAccess()}} <a href="{$forum->url()->setQueryString( 'passForm', '1' )}" data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="forum_requires_password" sprintf="$forum->_title"}'>{$forum->_title}</a> {{else}} <a href="{$forum->url()}">{{if $club}}{lang="club_node" sprintf="$club->name, $forum->_title"}{{else}}{$forum->_title}{{endif}}</a> {{endif}} </h3> {{if !$forum->redirect_on}} <ul class='cForumGrid__title-stats ipsType_reset ipsType_light'> {{$count = \IPS\forums\Topic::contentCount( $forum, TRUE );}} {{if $count > 0}}<li>{lang="posts_number" pluralize="$count" format="short"}</li>{{endif}} {{if $forum->followerCount}} <li> <a href='{url="app=core&module=system&controller=notifications&do=followers&follow_app=forums&follow_area=forum&follow_id={$forum->_id}"}' title='{lang="followers_tooltip"}' class='ipsType_blendLinks ipsType_noUnderline' data-ipsTooltip data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="who_follows_this"}'>{lang="forum_follower_count" pluralize="$forum->followerCount"}</a> </li> {{endif}} </ul> {{endif}} </div> <!-- Forum icon --> <span class='cForumGrid__icon-wrap ipsFlex-flex:00'> {{if !$forum->redirect_on AND \IPS\forums\Topic::containerUnread( $forum ) AND \IPS\Member::loggedIn()->member_id}} <a href="{$forum->url()->setQueryString( 'do', 'markRead' )->csrf()}" data-action='markAsRead' title='{lang="mark_forum_read"}' data-ipsTooltip> {{endif}} {{if $club}} <img src="{{if $club->profile_photo}}{file="$club->profile_photo" extension="core_Clubs"}{{else}}{resource="default_club.png" app="core" location="global"}{{endif}}" alt='' class='cForumGrid__icon-image'> {{elseif $forum->icon}} <img src="{file="$forum->icon" extension="forums_Icons"}" alt='' class='cForumGrid__icon-image cForumGrid__icon--custom'> {{else}} {{if $forum->redirect_on}} <span class='cForumGrid__icon cForumGrid__icon--redirect' {template="formattedInlineStyle" params="$forum" app="core" group="global" location="front"}> <i class='fa fa-arrow-right'></i> </span> {{elseif $forum->forums_bitoptions['bw_enable_answers']}} <span class='cForumGrid__icon cForumGrid__icon--answers' {template="formattedInlineStyle" params="$forum" app="core" group="global" location="front"}> <i class='fa fa-question'></i> </span> {{elseif $forum->password}} <span class='cForumGrid__icon cForumGrid__icon--password' {template="formattedInlineStyle" params="$forum" app="core" group="global" location="front"}> {{if $forum->loggedInMemberHasPasswordAccess()}} <i class='fa fa-unlock'></i> {{else}} <i class='fa fa-lock'></i> {{endif}} </span> {{else}} <span class='cForumGrid__icon cForumGrid__icon--normal' {template="formattedInlineStyle" params="$forum" app="core" group="global" location="front"}> <i class="fa fa-comments"></i> </span> {{endif}} {{endif}} {{if !$forum->redirect_on AND \IPS\forums\Topic::containerUnread( $forum ) AND \IPS\Member::loggedIn()->member_id}} </a> {{endif}} </span> </div> </div> <!-- Last post information --> <div class='cForumGrid__last ipsBorder_top ipsPadding_vertical:half ipsPadding_horizontal'> {{if !$forum->redirect_on}} {{if $lastPost}} <div> <ul class='ipsList_reset'> <li class='ipsDataItem_lastPoster__title'><a href="{$lastPost['topic_url']->setQueryString( 'do', 'getNewComment' )}" class='ipsType_break' title='{$lastPost['topic_title']}'>{$lastPost['topic_title']}</a></li> </ul> </div> {{else}} <p class='ipsType_light ipsType_reset ipsTruncate ipsTruncate_line'>{{if $forum->password}}{lang="no_forum_posts_password"}{{else}}{lang="no_forum_posts"}{{endif}}</p> {{endif}} {{else}} <p class='ipsType_light ipsType_reset ipsTruncate ipsTruncate_line'> {lang="redirect_hits" pluralize="$forum->redirect_hits"} </p> {{endif}} </div> </div> {{endif}} Just try yourself, I like it as it is by default.
  12. Haha
    kmk got a reaction from IP-Gamers in Grid card stylish   
    Hi, there already shared how we can stylish the grid card? 
    1. Hide the description space. 
    2. Hide the author avatar 
    3. Hide the repeated author and topic information. 
    What I would like to have is, just last one or two topics name below the card image. 
    I think that will create a clean, simple and focused forum homepage. 

  13. Thanks
    kmk reacted to bfarber in Add Phrase   
    If you wanted to create some text in the interface that you wanted to be able to translate to different languages, you can create a language string and use that instead of just embedding the text in a template. That's mostly what it comes down to.
  14. Like
    kmk got a reaction from zyx in Improvements for the app Gallery   
    Gallery should be a Media Center that provide rich video and image tools that support and enrich across IPS platform. By now it still a traditional gallery concept, need innovative improvements. 
  15. Thanks
    kmk reacted to Askancy in Improvements for the app Gallery   
    You're right, I've seen now and it allows, unfortunately though it doesn't indicate if this is a video or an image, at this point it would be cute/better to have the “play” icon to indicate a media content.
    Yes, I know, but I never understood why a user should care about the name of the image. I think that goes to break the beauty of the design. Also if one uploads 50 images together, changing name to every single image becomes a huge job, for something that in my opinion shouldn't appear there, at least. In my opinion that be inserted just above “Taken with”, in the lightbox.  Or they include the function for “rename all to:” a bit like when setting copyright in on mass.
    It's a bit like in the attachments of images in posts, rightly the name of the attachment (if image) is not shown because it's not of interest.
    Moreover I am not a developer of the IPS scene, so I do not know if it is true, and I ask you. Is it true that plugins can't include elements in lightboxes?
    I hope you improve this application that really has so much potential.
     
  16. Like
    kmk got a reaction from sobrenome in Improvements for the app Gallery   
    Gallery should be a Media Center that provide rich video and image tools that support and enrich across IPS platform. By now it still a traditional gallery concept, need innovative improvements. 
  17. Like
    kmk got a reaction from BomAle in Improvements for the app Gallery   
    Gallery should be a Media Center that provide rich video and image tools that support and enrich across IPS platform. By now it still a traditional gallery concept, need innovative improvements. 
  18. Like
    kmk reacted to Askancy in Improvements for the app Gallery   
    I honestly believe that IP.Board is one of the most complete platforms, but unfortunately its additional content (Downloads aside) needs more attention.
    In Gallery you can also upload videos as well as images, but in every button there is “Insert image”, wouldn't it be better to put “insert media”? (obviously where video content is allowed to load) Whenever a person uploads a video, the video doesn't have any thumbnails, I have no idea if with php you can extrapolate a frame from the video, but I sincerely believe it would take too much. Why not allow a custom thumb to be loaded? Maybe with FFmpeg? YouTube style, 3/5 thumbnails where the user chooses the best one.
    When a blank album is created, a blank thumb is created, in the list, wouldn't it be better a written with: “There are no images in this album yet”?
    File name in the gallery, why? in albums me and my users upload lots of screnshots, it's hard to edit every single name... But why make it appear in “ipsPhotoPanel”?
    An edit I asked for a few times, and I tried to make it custom, spoiler images. Now every community has the possibility to hide images, because they have spoiler or NFSW content, such as the method used by Reddit or Steam. And finally, a secondary thing but definitely nice and appreciable in a gallery, a personalized video player, and not the classic HTML5. A video player that allows you to put the logo of the site and other customizations, example: VideoJS, JWPlayer or Plyr.  
  19. Like
    kmk got a reaction from sobrenome in Video Gallery: Compression, Thumbnails & Player   
    +1
    +1
  20. Like
    kmk got a reaction from Joel R in Support Request View Bug?   
    In mobile version 

  21. Thanks
    kmk reacted to Woodsman in Mobile App Requirements are Disappointing   
    If people really need to see adult content it is best that they view it in the privacy of their own home on their personal computer. Android and iPhone Phones are meant to be mobile Adult content I do not believe this is the case.
  22. Like
    kmk reacted to AlexWebsites in VIDEO/CAM/CHAT APP for IPS Community   
    I'd like to see an application utilizing zoom for IPS. https://marketplace.zoom.us/docs/guides
  23. Thanks
    kmk got a reaction from Black Zero in Registration verifcation by Mobile Number   
    Yes, my community people don't have email use habit. Most use is cellphone...wechat, whatsapp....replace email mechanism by cellphone number is what my community need.
  24. Like
    kmk reacted to Bitlab Media Group in VIDEO/CAM/CHAT APP for IPS Community   
    Does anybody know of a LIVE VIDEO/CAM/CHAT app, widget, etc.. that can be used on the IPS system?
    I asked years ago, but wondering what is available tech wise as of today.
    Thanks for any info.
    ±saraJ.
  25. Like
    kmk reacted to Black Zero in Registration verifcation by Mobile Number   
    Hello
    Can possibly Registration verifcation by Mobile Number , means members register at forum put mobile number at registration form and code send to register member mobile , and many features with this like one mobile number use for one member ,any other member use this system error with already registered etc
    Login 2fa code send at Mobile 
    Password recovery with mobile number etc
    like this idea ? 
     
×
×
  • Create New...