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)?
-
-
·
LeonidS
- ·
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).
-
·
LeonidS
-
- · Hodor Hodor
- ·
i did it but it don't shows in timeline card
-
-
·
LeonidS
- ·
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.
-
·
LeonidS