By Alex Manni on Wednesday, 23 May 2018
Posted in General
Replies 3
Likes 0
Views 607
Votes 0
Hi


I was wondering if you've an update on this Post (no such module at the present):
https://stackideas.com/forums/no-trending-module-in-easyblog

Alternatively, can you please tell me which SQL I should use to get these trends (I'm a dev, I just need to know which tables I've to query).

Many thanks
Do you mean you would like to populate those blog post on the certain page who post in same location?

If yes, those location data is actually stored in this post table #__easyblog_post.
·
Wednesday, 23 May 2018 10:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi

No, my request is to get a Trending box (like in Twitter), where we see the most used Tags posted in the blog.

For instance, I could fire something similar:

Select Count(Tag) as Tags GROUP BY Hit ORDER BY Tags DESC Limit 10

Please confirm

Many thanks
·
Thursday, 24 May 2018 04:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Oh, i got your meaning now, for the current table structure, when the user add tag into the blog post, it will create those new tag data into this table #__easyblog_tag , and it will also store in this table as well #__easyblog_post_tag for record which tag added into the blog post on the site.

Hope this will help much you here.
·
Thursday, 24 May 2018 11:05
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post