Current time: 28-03-2024, 12:41 PM
Hello There, Guest!
Login 
  • Search
  • Thank you/like system


    MyBB Group Developer
    #1
    Plugin 
    Thank you/like system
    Powerful thank you/like system with Tapatalk and MyAlerts in-built support.

    Compatibility:
    MyBB 1.8.x family.

    Licence:
    • Standard MIT Licence applies.
    • MyBB Group Free Product Licence overrules.
    Support:
    • Only through Group Site Thread
    • Custom modification requests are not free and depends on availability of the developer.
    • Users are allowed to create issues directly at Github Repo. However; no customization / modification requests are accepted over GitHub.
    • We don't support custom themes. If the plugin is working with stock theme that concludes the plugin is OK. Any issue related to custom theme only will be considered as custom work and may not be addressed with priority / at all.
    Features:
    • Full Tapatalk support!
    • MyAlerts v2.0 support!
    • Support for MyBB group promotion system!
    • Maximum thanks/likes in a time period configurable for every usergroup.
    • Full language support.
    • Turn plugin on/off with a single option.
    • Switch between "Thank You" or "Like" by changing one simple option.
    • Thank Yous/Likes are fully AJAX compatible.
    • Customize Thank You/Like for first post of thread only or for all posts.
    • Selectable option to allow/disallow users from removing their Thank You/Like.
    • Exclude forums where you do not want to use the Thank You/Like system.
    • Plugin tracks number of Thank Yous/Likes for users, posts and threads as well as a grand total.
    • Shows Thank You/Likes in postbit as well as the user's profile.
    • Counts both the Thanks/Likes given as well as the Thanks/Likes received and the number of posts received in.
    • Finds all threads or posts Thanked/Liked by any particular user as well as threads or posts where a user received thanks/Likes.
    • Thank Yous/Likes list can be made to collapse saving space for boards where threads/posts get a lot of Thank Yous/Likes.
    • Sort the Thank Yous/Likes by username or by order of Date/Time Thanked/Liked.
    • Show/Hide Date/Time of Thank You/Like and also set the format of the Date/Time or show date/time on a mouse hover.
    • Works for all modes of views, classic, modern, linear, threaded.
    • Thank You/Likes can be recounted and rebuilt if they get out of sync for any reason.
    • Format list of users who have Thanked/Liked according to their display groups or just keep it plain.
    • IPv6 ready and fully supported.
    • Custom CSS file for easier customization.
    • Option to set Thank You/Like button only for specific forums.
    • Hide/show Thank You/Like button/list for specific user groups.
    • Allow/disallow adding Thank You/Likes in closed threads.
    • Popup jGowl notification in the top right corner with settings.
    • Support for multiple themes.
    • Recount and rebuild cache in ACP.
    • Customize time and date output settings for Thank You/Likes received under posts.
    • Ability to thank/like own posts with custom settings.
    • Cached templates and minified JS for better site speed.
    • Highlight popular posts with predefined amount of gained thanks/likes.
    • Support for MyBB reputation system.
    • Possibility to display most thanked/liked post in a member profile for every user.
    • ...and much more!
    For downloading the latest version, please visit MyBB Extend site.
    2 users Like Eldenroot's post
    Like Reply
    This post has been deleted.
    Junior Member
    #3
    Hello, i get this error when i try install - how do i fix it??
     MyBB has experienced an internal SQL error and cannot continue.
    SQL Error:1264 - Out of range value for column 'disporder' at row 1Query:INSERT INTO mybb_settinggroups (name,title,description,disporder,isdefault) VALUES ('g33k_thankyoulike_settings','Thank You/Like System','Settings to customize the Thank You/Like System plugin.',65536,0)
    Like Reply
    Junior Member
    #4
    Hello! Your plugin is Good but there is a little promem.

    On the like unlike thank unthank button the thumb up and down icon is under the text. (text goes over the picture.)
    Could you please fix this or tell me how and where to move te icon
    Thanks in advance
    Like Reply
    MyBB Group Developer
    #5
    I believe the text breaking button issue has already been addressed.
    Are you using the latest version? Please share the snap of what issue is happening ...
    Like Reply
    Junior Member
    #6
    Hello, how can I display number of thanks in the portal
    Like Reply
    MyBB Group Developer
    #7
    I think this is currently possible only with core edits to portal.php.

    Change line #513 from:
            SELECT p.pid, p.message, p.tid, p.smilieoff, t.attachmentcount
    
    to:
            SELECT p.pid, p.message, p.tid, p.smilieoff, p.tyl_pnumtyls, t.attachmentcount
    

    Then, insert at line #580:
                $announcement['tyl_pnumtyls'] = $posts[$announcement['tid']]['tyl_pnumtyls'];
    

    Now, you can use the variable {$announcement['tyl_pnumtyls']} in the portal_announcement template.

    Line numbers assume MyBB version 1.8.27.
    1 user Likes Laird's post
    Like Reply
    Junior Member
    #8
    (02-09-2021, 12:12 PM)Laird Wrote: I think this is currently possible only with core edits to portal.php.

    Change line #513 from:
            SELECT p.pid, p.message, p.tid, p.smilieoff, t.attachmentcount
    
    to:
            SELECT p.pid, p.message, p.tid, p.smilieoff, p.tyl_pnumtyls, t.attachmentcount
    

    Then, insert at line #580:
                $announcement['tyl_pnumtyls'] = $posts[$announcement['tid']]['tyl_pnumtyls'];
    

    Now, you can use the variable {$announcement['tyl_pnumtyls']} in the portal_announcement template.

    Line numbers assume MyBB version 1.8.27.
    It Worked, Thanks legend.
    1 user Likes frederickoguntoye's post
    Like Reply
    Junior Member
    #9
    I installed the plug-in. When I click on a post to like it it just gives me a blue spinning wheel and does nothing. Am I doing something wrong maybe with configuring or?
    Like Reply
    MyBB Group Developer
    #10
    There's probably a PHP error being returned instead of or mixed in with the JSON. Can you please open up the Web Developer Tools (F12 does it in most browsers), head to the Network tab, then click the Like button as you have been doing, and share with us here what's returned by the query to thankyoulike.php on the web server (in the Response tab)?
    Like Reply