Page 1 of 8 1 2 3 4 5 6 7 8 LastLast
Results 1 to 15 of 107
Like Tree48Likes

Sidebar-Blocks on forum home for like feature

This is a discussion on Sidebar-Blocks on forum home for like feature within the General Discussion forums, part of the vBSEO SEO Plugin category; Are Sidebar-Blocks available jet (Recent and Top Likes)? Where do I find them?...

  1. #1
    Member fide's Avatar
    Real Name
    Markus Jung
    Join Date
    Jan 2006
    Location
    Germany
    Posts
    68
    Liked
    4 times

    Sidebar-Blocks on forum home for like feature

    Are Sidebar-Blocks available jet (Recent and Top Likes)? Where do I find them?

  2. #2
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    They are not a part of RC1.

  3. #3
    Member Taurus's Avatar
    Real Name
    Pierre
    Join Date
    May 2010
    Posts
    88
    Liked
    7 times
    May I ask why?

    Thanks.
    CreativX - Custom designed Widows 7 Themes -FREE-

  4. #4
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,742
    Liked
    168 times
    Hello,

    you can create those blocks in admincp with "Content type" set to "PHP", "Template to Use" set to "block_html" and the code for "Top Liked Threads":
    PHP Code:
    if(VBSEO_ENABLED)
    {
    vbseo_extra_inc('ui');
    return 
    vBSEO_UI::likes_block('topthread');

    and for "Recent Likes":
    PHP Code:
    if(VBSEO_ENABLED)
    {
    vbseo_extra_inc('ui');
    return 
    vBSEO_UI::likes_block('latest');


  5. #5
    Member Taurus's Avatar
    Real Name
    Pierre
    Join Date
    May 2010
    Posts
    88
    Liked
    7 times
    Thank you very much Oleg! Works great!
    CreativX - Custom designed Widows 7 Themes -FREE-

  6. #6
    Member
    Real Name
    Robert
    Join Date
    Oct 2005
    Location
    Orange County, CA
    Posts
    45
    Liked
    6 times
    How would we get this to work for 3.8.x?

  7. #7
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    Sidebars don't exist in vb3....

  8. #8
    Member
    Real Name
    Robert
    Join Date
    Oct 2005
    Location
    Orange County, CA
    Posts
    45
    Liked
    6 times
    What I should of said is in vBulletin 3.8, is there a page we can go to see the latest likes or is that just not available ATM? Or is there a function I can call in vBulletin 3.8 and create a vBAdvanced module to display the recent likes?

  9. #9
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    This is not available. It would be farily simply to make some add on for it. It's a very simple query and the likes system database tables are very basic in nature.

  10. #10
    Senior Member Brandon Sheley's Avatar
    Real Name
    Brandon Sheley
    Join Date
    Oct 2005
    Location
    Kansas
    Posts
    2,348
    Liked
    20 times
    Blog Entries
    1
    Quote Originally Posted by Oleg Ignatiuk View Post
    Hello,

    you can create those blocks in admincp with "Content type" set to "PHP", "Template to Use" set to "block_html" and the code for "Top Liked Threads":
    PHP Code:
    if(VBSEO_ENABLED)
    {
    vbseo_extra_inc('ui');
    return 
    vBSEO_UI::likes_block('topthread');

    and for "Recent Likes":
    PHP Code:
    if(VBSEO_ENABLED)
    {
    vbseo_extra_inc('ui');
    return 
    vBSEO_UI::likes_block('latest');

    Thanks for the code
    do you know why the recent liked box has a space it in, vs the top liked box?
    I have both enabled right now on General Forums
    is this a template somewhere? I'd like to tighten the recent liked box up some

    thx again
    My forums: General Forums | Admin Talk (running xenforo)

  11. #11
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,742
    Liked
    168 times
    They are somewhat different in nature (hence different layout) - "recent likes" has details on who and when liked the post, while "top liked" only has the total number of likes.

  12. #12
    Member
    Real Name
    Dinh Thanh
    Join Date
    Sep 2010
    Posts
    93
    Liked
    21 times
    Hi Oleg Ignatiuk,

    Could you help me limit the number of days of this select query?
    I want our members see only Top Liked Threads only in a week (only new threads are useful to our members, very old threads are useless).

    Thank you.

  13. #13
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,742
    Liked
    168 times
    You can modify functions_vbseo_ui.php file for that:
    find:
    WHERE forumid in (".implode(',', $flist).")
    replace with:
    WHERE forumid in (".implode(',', $flist).") AND dateline>".(time()-7*24*3600)."

  14. #14
    Senior Member
    Real Name
    Sushubh
    Join Date
    Apr 2007
    Posts
    250
    Liked
    62 times
    Ok. This is a pretty unreasonable feature request. But I would really love to have an RSS feed of the latest liked Posts (not threads)...

  15. #15
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,100
    Liked
    622 times
    Blog Entries
    4
    Please post your feature requests within vBSEO Plugin Feature Suggestions

    We are doing heavy tests right now and no feature will be included in vBSEO 3.6.0 until Gold
    fide and Sushubh like this.
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

Page 1 of 8 1 2 3 4 5 6 7 8 LastLast

Similar Threads

  1. vBulletin 3.x vbSEO blocks private forum
    By designguy in forum Troubleshooting
    Replies: 1
    Last Post: 08-15-2010, 10:32 PM
  2. Description and keywords on home and forum home
    By Zagis in forum General Discussion
    Replies: 3
    Last Post: 07-29-2008, 03:27 PM
  3. How to have forum blocks like the attached picture?
    By HiSoC8Y in forum vBSEO.com Styles
    Replies: 2
    Last Post: 02-27-2008, 07:57 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •