CodeIgniter Forums
Friend/Follower addon - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: External Resources (https://forum.codeigniter.com/forumdisplay.php?fid=7)
+--- Forum: Addins (https://forum.codeigniter.com/forumdisplay.php?fid=13)
+--- Thread: Friend/Follower addon (/showthread.php?tid=74360)



Friend/Follower addon - Mekaboo - 09-15-2019

Hey!

Does anyone know of a addon that will assist in adding friends like FB or followers like IG/Twitter? I definitely appreciate the help!

Heart Heart ,
Mekaboo


RE: Friend/Follower addon - InsiteFX - 09-16-2019

How to create live follower and following count for steemit account using Codeigniter


RE: Friend/Follower addon - Mekaboo - 09-16-2019

(09-16-2019, 08:32 AM)InsiteFX Wrote: How to create live follower and following count for steemit account using Codeigniter
Thank ya kindly for the help  Heart

This says for Steemit...I don't want an account with them..how will this work for a non Steemit site?


RE: Friend/Follower addon - InsiteFX - 09-16-2019

Not sure, but if you do a google search on CodeIgniter friends and followers it will get you
hits for it.


RE: Friend/Follower addon - Mekaboo - 09-16-2019

(09-16-2019, 12:22 PM)InsiteFX Wrote: Not sure, but if you do a google search on CodeIgniter friends and followers it will get you
hits for it.
Awesome sauce Heart


RE: Friend/Follower addon - demyr - 09-16-2019

Do you know any jquery? Because with jQuery and Ajax you can do this (not so difficult). But start with creating another database table for this operation:

fav_id   - follower_id  - followed_id 

and use the power of jquery/ajax.


RE: Friend/Follower addon - Mekaboo - 09-17-2019

(09-16-2019, 10:07 PM)demyr Wrote: Do you know any jquery? Because with jQuery and Ajax you can do this (not so difficult). But start with creating another database table for this operation:

fav_id   - follower_id  - followed_id 

and use the power of jquery/ajax.
Oh yeah I know jquery...I use it alot in my basic html sites. I've seen quite a bit of ajax based scripts and in the process of adding one in my site now! Thanks for the advice  Heart