Upvoting other module

Can i use the upvote option like in the forum for other modules like albums or photos specifically when displayed in timeline (maybe also replace the 5 stars thing in photos)?

  • 935
  • More
Replies (3)
    • Hello @Hodor Hodor !

      If you don't want to use Reactions with a number of choices you may disable them and enable Likes. For example, if you want to do it in Posts app you need to do the following: Go to Studio -> Navigation -> Select Posts app -> Select View Actions menu, disable Reaction and enable Vote (for / against).

      • i did it but it don't shows in timeline cardimage_transcoder.php?o=sys_images_editor&h=2838&dpx=1&t=1759166720

        • Then you need to check the `sys_objects_score` table with the query like:

          SELECT `name`, `is_on` FROM `sys_objects_score` WHERE `name`='bx_timeline';

          if the `is_on` value is 0 then you need to change it to 1 with this query:

          UPDATE `sys_objects_score` SET `is_on` = '1' WHERE `name`='bx_timeline' LIMIT 1;

          then clear the cache and check this part again.

          Login or Join to comment.