Jump to content

kmk

Clients
  • Posts

    3,097
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Like
    kmk reacted to gabs007 in (TB) Bump Up Topics   
    Have you considered an ACP module where you could cron all kind of bumps ? 
    It would be very very useful for an admin to control bumps through a cron. This way I could have a list of, for example, 10 or 20 topisc that I want to bump during the week.
    I could even charge users for bumping their topics, specially in my community that some topics are just classifieds. 
     
    PS: I love this mod, it's very useful for my community since post owners can bump their topics without adding pointless posts
  2. Thanks
    kmk reacted to Meddysong in Clubs Enhancements   
    Already requested, mate -- you're faster, so I thought I'd ask
  3. Like
    kmk reacted to InvisionHQ in Classifieds System   
    In the marketplace I've released the Classifieds 1.1.1 that support 4.2 features and Member Store:
    4.2 Compatibility Fixes all issues reported in the Tracker Reactions support (IPS 4.2) Clubs support  (IPS 4.2) Content Message and Promote features  (IPS 4.2) Embedded content  (IPS 4.2) Recommended Questions (IPS 4.2) Added REACTIONS to the questions (IPS 4.2) Member Store (IPS 4.2) Activity stream support (IPS 4.2) Change advert type once posted  Featured and Pinned Blocks for General > Settings > Views Advert posting restriction Disable EDIT feature in completed adverts Dates on expired ads Default option for user Integration to Gallery Some screenshots of member store feature:


    Now I'm ready to get new suggestions and reports on my forum BBCODE.IT.
     
  4. Thanks
    kmk reacted to Adriano Faria in Quizzes   
    Open applications\quizzes\sources\Quiz\Quiz.php and find:
    /** * Save the Quiz (Leaderboard) */ public function saveGame( $score, $time ) { /* Save the Quiz results in the Leaderboard. Only the first attempt will be recorded */ if( \IPS\Db::i()->select( 'COUNT(*) as count', 'quizzes_leaders', array( 'q_lquiz_id=? AND q_lmid=?', $this->id, \IPS\Member::loggedIn()->member_id ) )->first() == 0 ) { $toInsert = array( 'q_lquiz_id' => $this->id, 'q_lmid' => \IPS\Member::loggedIn()->member_id, 'q_lscore' => $score, 'q_ldate' => time(), 'q_lipaddress' => \IPS\Request::i()->ipAddress(), 'q_ltime' => $time ); \IPS\Db::i()->insert( 'quizzes_leaders', $toInsert, TRUE ); } } Change to:
    /** * Save the Quiz (Leaderboard) */ public function saveGame( $score, $time ) { /* Save the Quiz results in the Leaderboard. Only the first attempt will be recorded */ if( \IPS\Db::i()->select( 'COUNT(*) as count', 'quizzes_leaders', array( 'q_lquiz_id=? AND q_lmid=?', $this->id, \IPS\Member::loggedIn()->member_id ) )->first() == 0 ) { $toInsert = array( 'q_lquiz_id' => $this->id, 'q_lmid' => \IPS\Member::loggedIn()->member_id, 'q_lscore' => $score, 'q_ldate' => time(), 'q_lipaddress' => \IPS\Request::i()->ipAddress(), 'q_ltime' => $time ); \IPS\Db::i()->insert( 'quizzes_leaders', $toInsert, TRUE ); } else { $toUpdate = array( 'q_lscore' => $score, 'q_ldate' => time(), 'q_lipaddress' => \IPS\Request::i()->ipAddress(), 'q_ltime' => $time ); \IPS\Db::i()->update( 'quizzes_leaders', $toUpdate, array( 'q_lquiz_id=? AND q_lmid=?', $this->id, \IPS\Member::loggedIn()->member_id ) ); } } This will add a new record if the user hasn't played yet and will update that record if already played.
    I probably will add it as a setting in the next version.
  5. Like
    kmk reacted to xtech in Quizzes   
    That is if you show them the correct answers, which i never do  
    I want them to study and improve to get better in between taking the quizzes.
    If they prepare well themselves, eventually some of them may have 100%, but that's fine and motivates others to try quizzes again.
  6. Like
    kmk reacted to xtech in Quizzes   
    I understand your point of view. But for a community who uses quizzes to improve interaction, it would be nice that when quizzes can be taken more than once, the score gets updated with the last one, otherwise there is no point in repeating the quizz.
    Repeating the quizz is highly desirable as you keep people interacting with the site and with each other so i think storing the last classification when quizzes are allowed to be taken more than once would be advantageous.
    For me it's good and desirable that the users could repeat the test over and over trying to improve their scores. This way i can keep users within the site, competing with each other, which is very good from the site owner point of view.
    Some of my users are getting frustrated as they try to improve their score and the ranking doesn't get updated... they want their own bragging rights  
  7. Like
    kmk reacted to TAMAN in Infraskew Theme [ support topic ]   
    Not only left, also center ^^

  8. Thanks
    kmk reacted to Pedro Ibáñez in Pages SuperHelp support topic   
    Hi again and sorry opentype, now I understand better how super grid and super help works.
    At last I get it to work very pretty mixing super grid and super help and making templates on Photoshop and adding them with <img src=”http://myserver.com/uploads/ rst_category.jpg”> .
    I have a little questions please (In red in screenshots).
     

    PD: If anyone like the templates I made, and always with opentype permission I can share.
    Much Thanks!
  9. Haha
    kmk reacted to Fosters in (NB41) Content Ratings   
    It's also a 3rd party app there https://xenforo.com/community/resources/post-ratings-taking-likes-to-the-next-level.410/
  10. Like
    kmk reacted to Ryan H. in Easy Pages   
    Yes, in my application code. No, it would not be overwritten by updating IPS.
    Look, I don't know what to say to you. I've told you repeatedly that you need to have some patience (again, I cannot respond to everything in a matter of hours); I've explained the situation and how this issue is largely out of my control right now; and I asked for access to your site to work around the issue for you four days ago. You have yet to provide that access, so I am not sure how you expect me to do anything.
  11. Thanks
    kmk reacted to Ohio Guns in Quizzes   
    You need to head over to sosinvision.com.br/ips4 to get the latest versions for both apps to use on your 4.2 test board
  12. Like
    kmk reacted to Joel R in Group Collaboration   
    Will it be forthcoming?  
    The more I look at Clubs, the more I think IPS users need to use Group Collabs instead in 4.2.  
     
  13. Like
    kmk reacted to Fosters in Application Forms - Supporttopic   
    Our application was built specially for "Staff Applications", but we have some huge improvement ideas on our roadmap.
  14. Like
    kmk reacted to RottenX in Application Forms - Supporttopic   
    I like the app and team...apps that change to the needs of the clients = Wonderful!!!
    Now I havent read all posts so my apologizes.
    Here are my suggestions:
    1.  Email and edit function seem buggy - I get other members and seems random
    2.  Need the option to delete the apps from the viewer in ACP.
    3.  Approve application from forum post or other front end function.
    4.  Have the option for other groups to be able to approve application via forum post or other front end function.
    I love the app so far and it can be improved.  On my site the background and front color makes it hard to read, option or light or Dark background with opposing font colors would help clients that don't have the perfect theme.
    I will be on the edge of my seat for future updates, the suggestions and other member manage apps make admin of a gaming community easier (we like to game sometimes too)
    RottenX
  15. Like
    kmk reacted to SammyS in Classifieds System   
    Really nice new features, I really hope this app to get more and more development as it´s really important for over 100 communities here
  16. Like
    kmk reacted to Adriano Faria in Classifieds System   
  17. Haha
    kmk reacted to Ohio Guns in Group Collaboration   
    I don't know either ?
     
    I assume i can make use of the free demo version that's available here to find out?
     
    ill report back with the findings! Thanks for the answer! 
  18. Thanks
    kmk reacted to Ohio Guns in Group Collaboration   
    Does this integrate with other addons? Like I have classifieds from Adriano installed, and would like the classifieds to work within the colabs like official ips apps do
  19. Thanks
    kmk got a reaction from Fierce God in Group Collaboration   
    Sorry, maybe I explained not clearly. I mean I(admin) want use collab to manage clubs, like others features forum, calendar and more. And members can opening a club and owner it inside the collab.
    Or say it simple, add club into the collab.
    Sorry for my english, like a kid try to explain something..

  20. Thanks
    kmk reacted to Kevin Carwile in Group Collaboration   
    @kmk You can do that with roles inside a collab. Simply create roles for school 1, school 2, basketball dept, football dept, etc. Each role can have different levels of access to resources within the collab based on the permissions you assign. Objective complete.
  21. Like
    kmk got a reaction from Fierce God in Group Collaboration   
    How about include clubs features into collab?
  22. Like
    kmk reacted to InvisionHQ in Classifieds System   
    Please have a little patience, at this stage we will ensure full compatibility with 4.2.
    Soon after, we'll start talking about new features.
  23. Thanks
    kmk reacted to Adriano Faria in Classifieds System   
    No change at all. Only Classifieds was requiring a time that unfortunately I couldn't offer anymore. It was something like only works in Classifieds and leave all others or works in all others and leave Classifieds wait too much for fixes/new features. Due to the nature of the app (money, etc), it can't wait.
  24. Thanks
    kmk reacted to InvisionHQ in Classifieds System   
    Hi guys, I will try to do my best to continue the excellent work already done on the app by @Adriano Faria.
  25. Like
×
×
  • Create New...