vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   vBulletin Blog - Latest Blogs on Home Page (https://vborg.vbsupport.ru/showthread.php?t=156652)

ericgtr 09-02-2007 02:59 PM

I have changed the template edit to place the Latest Blog box below the what's going on box instead. Try applying the template edit again, be sure to note the new location in the instructions.

readjono 09-02-2007 03:21 PM

That's done the trick! :) In fact I might move it above the 'What's Going On' box, as it works well there too.

ericgtr 09-02-2007 03:31 PM

Quote:

Originally Posted by readjono (Post 1330793)
That's done the trick! :) In fact I might move it above the 'What's Going On' box, as it works well there too.

Glad it's working for you. Yeah, this way it can be placed above or below much easier. Please remember to click install if you use it. :)

NFLfbJunkie 09-02-2007 06:40 PM

I applied the new template edit and reimported the product, but now (for me) the "Views" and "Date" columns are missing information. Also, is there a way to put a border within the table and change the color of the table to one that matches the rest of the default style's colors?

cclaerhout 09-02-2007 08:28 PM

I've just done very little modification to phrased the code. Thanks, it'a nice hack :)

Code:

<!-- Latest Blogs -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
        <tr>
                <td class="tcat" colspan="4">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('latest_blogs')"><img id="collapseimg_latest_blogs" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_latest_blogs].gif" alt="" border="0" /></a>
      <a href="blog.php">$vbphrase[latestblogs]</a>
                </td>
        </tr>
</thead>
<tbody id="collapseobj_latest_blogs" style="$vbcollapse[collapseobj_latest_blogs]">
        <tr>
                <td class="thead">$vbphrase[author]</td>
                <td class="thead">$vbphrase[title]</td>
                <td class="thead">$vbphrase[views]</td>
                <td class="thead">$vbphrase[date]</td>
        </tr>
        <tr>
                <td class="smallfont"">$spitblogs_username</td>
                <td class="smallfont">$spitblogs_title</td>
                <td class="smallfont">$spitblogs_views</td>
                <td class="smallfont">$spitblogs_date</td>
  </tr>
</tbody>
</table>
<!-- Latest Blogs -->


Lpspider 09-02-2007 08:40 PM

Quote:

Originally Posted by ericgtr (Post 1330304)
If you have vbadvanced you can put into one of your sidebar items and have it displayed on your forum page, they have a how to on that over at their site.

Well, say I don't have vbadvanced... then how would I go about it?

NFLfbJunkie 09-03-2007 11:42 PM

Ericgtr, Any idea why I might be having this problem after reinstalling everything?

Michael2 09-04-2007 12:26 AM

Seems to work ok on the foruhome page but not on any other page. The table is there but not the data. Any idea how to make this work on all pages?

ericgtr 09-04-2007 02:15 AM

Quote:

Originally Posted by Junkie (Post 1331762)
Ericgtr, Any idea why I might be having this problem after reinstalling everything?

I have no idea why the views and dates aren't showing up as the code is in both the template and plugin, only the template needed updating. Try installing the plugin again and see if it doesn't change it for you.

ericgtr 09-04-2007 02:17 AM

Quote:

Originally Posted by Michael2 (Post 1331791)
Seems to work ok on the foruhome page but not on any other page. The table is there but not the data. Any idea how to make this work on all pages?

That's because it uses the forumhome_start hook i'm not sure which hook initiates it for every page, you can try maybe global_start or global_complete but I can't be sure.

NFLfbJunkie 09-04-2007 02:28 AM

Yeah, I can't figure it out either. When I paste the old template code I get all four columns showing information, but when I paste the new code I do not. Here is the old code:

HTML Code:

<!-- Latest Blogs -->
  <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
 <tr>
  <td class="thead" colspan="2">
  <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('latest_blogs')"><img id="collapseimg_latest_blogs" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_latest_blogs].gif" alt="" border="0" /></a>
      <a href="blog.php">Latest Blogs</a>
  </td>
 </tr>
</thead>
<tbody id="collapseobj_latest_blogs" style="$vbcollapse[collapseobj_latest_blogs]">
 <tr>
  <td class="alt1">
  <table border="0" width="100%">
 <tr>
  <td class="thead">Author</td>
  <td class="thead">Title</td>
  <td class="thead">Views</td>
  <td class="thead">Date</td>
 </tr>
 <tr>
  <td>$spitblogs_username</td>
  <td>$spitblogs_title</td>
  <td>$spitblogs_views</td>
  <td>$spitblogs_date</td>
 </tr>
</table>
  </td>
 </tr>
</tbody>
</table>
<!-- Latest Blogs -->

I have pasted the Latest Blogs above the "What's Going On" and below, and get the same results. Is there some code in the FORUMHOME template that must be near your code? I am completely baffled.

ericgtr 09-04-2007 02:40 AM

I see an extra quote in the latest code (fixed now) will you try applying the template edit again and let me know?

NFLfbJunkie 09-04-2007 02:44 AM

I reimported the product and pasted your modified code and still is not working right for me. Would you mind looking at my FORUMHOME template?

HTML Code:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
 <!-- no cache headers -->
 <meta http-equiv="Pragma" content="no-cache" />
 <meta http-equiv="Expires" content="-1" />
 <meta http-equiv="Cache-Control" content="no-cache" />
 <!-- end no cache headers -->
 $headinclude
 <title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
</head>
<body>
$header
$navbar
<!-- main -->
$forumbits
$forumhome_markread_script
<!-- /main -->
<!-- Latest Blogs -->
  <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
 <tr>
  <td class="tcat" colspan="4">
  <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('latest_blogs')"><img id="collapseimg_latest_blogs" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_latest_blogs].gif" alt="" border="0" /></a>
      <a href="blog.php">Latest Blogs</a>
  </td>
 </tr>
</thead>
<tbody id="collapseobj_latest_blogs" style="$vbcollapse[collapseobj_latest_blogs]">
 <tr>
  <td class="thead">Author</td>
  <td class="thead">Title</td>
  <td class="thead">Views</td>
  <td class="thead">Date</td>
 </tr>
 <tr>
  <td class="smallfont">$spitblogs_username</td>
  <td class="smallfont">$spitblogs_title</td>
  <td class="smallfont">$spitblogs_views</td>
  <td class="smallfont">$spitblogs_date</td>
  </tr>
</tbody>
</table>
<!-- Latest Blogs -->
<br>
<!-- what's going on box -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
 <tr>
  <td class="tcat" colspan="2">$vbphrase[whats_going_on]</td>
 </tr>
</thead>
<if condition="$show['loggedinusers']">
<!-- logged-in users -->
<tbody>
 <tr>
  <td class="thead" colspan="2">
  <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')"><img id="collapseimg_forumhome_activeusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
  <a href="online.php$session[sessionurl_q]" rel="nofollow">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
  </td>
 </tr>
</tbody>
<tbody id="collapseobj_forumhome_activeusers" style="$vbcollapse[collapseobj_forumhome_activeusers]">
 <tr>
  <td class="alt2"><a href="online.php$session[sessionurl_q]" rel="nofollow"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="$vbphrase[view_whos_online]" border="0" /></a></td>
  <td class="alt1" width="100%">
  <div class="smallfont">
    <div style="white-space: nowrap"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></div>
    <div>$activeusers</div>
  </div>
  </td>
 </tr>
</tbody>
<!-- end logged-in users -->
</if>
<tbody>
 <tr>
  <td class="thead" colspan="2">
  <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_stats')"><img id="collapseimg_forumhome_stats" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_stats].gif" alt="" border="0" /></a>
  <phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>
  </td>
 </tr>
</tbody>
<tbody id="collapseobj_forumhome_stats" style="$vbcollapse[collapseobj_forumhome_stats]">
 <tr>
  <td class="alt2"><img src="$stylevar[imgdir_misc]/stats.gif" alt="<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>" border="0" /></td>
  <td class="alt1" width="100%">
  <div class="smallfont">
  <div>
    $vbphrase[threads]: $totalthreads,
    $vbphrase[posts]: $totalposts,
    $vbphrase[members]: $numbermembers<if condition="$show['activemembers']">,
    <span title="<phrase 1="$vboptions[activememberdays]">$vbphrase[within_the_last_x_days]</phrase>">$vbphrase[active_members]: $activemembers</span>
    </if>
  </div>
  <div><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div>
  </div>
  </td>
 </tr>
</tbody>
<if condition="$show['birthdays']">
<!-- today's birthdays -->
<tbody>
 <tr>
  <td class="thead" colspan="2">
  <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_birthdays')"><img id="collapseimg_forumhome_birthdays" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_birthdays].gif" alt="" border="0" /></a>
  $vbphrase[todays_birthdays]
  </td>
 </tr>
</tbody>
<tbody id="collapseobj_forumhome_birthdays" style="$vbcollapse[collapseobj_forumhome_birthdays]">
 <tr>
  <td class="alt2"><a href="calendar.php?$session[sessionurl]do=getday&amp;day=$today&amp;sb=1"><img src="$stylevar[imgdir_misc]/birthday.gif" alt="$vbphrase[view_birthdays]" border="0" /></a></td>
  <td class="alt1" width="100%"><div class="smallfont">$birthdays</div></td>
 </tr>
</tbody>
<!-- end today's birthdays -->
</if>
<if condition="$show['upcomingevents']">
<tbody>
 <tr>
  <td class="thead" colspan="2">
  <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_events')"><img id="collapseimg_forumhome_events" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_events].gif" alt="" border="0" /></a>
  <if condition="$show['todaysevents']">$vbphrase[todays_events]<else /><phrase 1="$vboptions[showevents]">$vbphrase[upcoming_events_for_the_next_x_days]</phrase></if>
  </td>
 </tr>
</tbody>
<tbody id="collapseobj_forumhome_events" style="$vbcollapse[collapseobj_forumhome_events]">
 <tr>
  <td class="alt2"><a href="calendar.php$session[sessionurl_q]"><img src="$stylevar[imgdir_misc]/calendar.gif" alt="$vbphrase[calendar]" border="0" /></a></td>
  <td class="alt1" width="100%"><div class="smallfont">$upcomingevents</div></td>
 </tr>
</tbody>
</if>
<tbody>
 <tr>
  <td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
  <a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a>
  <if condition="$vboptions['forumleaders']">&nbsp; &nbsp;
  <a href="showgroups.php$session[sessionurl_q]" rel="nofollow">$vbphrase[view_forum_leaders]</a></if>
  </strong></div></td>
 </tr>
</tbody>
</table>
<br />
<!-- end what's going on box -->
<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
 <td align="center">
  <table cellpadding="2" cellspacing="0">
  <tr>
  <td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
  <td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
  <td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
  <td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
  <td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
  <td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
  </tr>
  </table>
 </td>
</tr>
 <if condition="!$show['guest']">
<tr>
  <!-- member logout -->
  <td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]"  onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
  <!-- end member logout -->
</tr>
 </if>
</table>
<!-- / icons and login code -->
$footer
</body>
</html>


ericgtr 09-04-2007 02:53 AM

That looks right to me. Can you try to apply this (just the template code) to your vb default template and see if you get the same results, just to test it out.

NFLfbJunkie 09-04-2007 02:57 AM

This is my default FORUMHOME template. This is totally weird. :confused:

xug 09-06-2007 12:39 PM

I believe you get a better look when you use the following code:

Code:

<!-- end what's going on box -->

<!-- Latest Blogs -->
                <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
        <tr>
                <td class="thead" colspan="5">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('latest_blogs')"><img id="collapseimg_latest_blogs" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_latest_blogs].gif" alt="" border="0" /></a>
      <a href="blog.php">Latest Blogs</a>
                </td>
        </tr>
</thead>
<tbody id="collapseobj_latest_blogs" style="$vbcollapse[collapseobj_latest_blogs]">
        <tr>
                <td class="alt2" style="width: 27px"> </td>
                <td class="thead">Author</td>
                <td class="thead">Title</td>
                <td class="thead">Views</td>
                <td class="thead">Date</td>
        </tr>
        <tr>
                <td class="alt2" style="width: 27px"><a href="blog.php"><img src="images/misc/blog.png" alt="View Blog Index" border="0" /></a></td>
                <td class="alt1"><div class="smallfont">$spitblogs_username</div></td>
                <td class="alt1"><div class="smallfont">$spitblogs_title</div></td>
                <td class="alt1"><div class="smallfont">$spitblogs_views</div></td>
                <td class="alt1"><div class="smallfont">$spitblogs_date</div></td>
  </tr>
</tbody>
</table>
<!-- Latest Blogs -->
<br />


Peter_Rosado 09-12-2007 09:26 PM

can you please make it show the last 5 blogs that have been updated instead of the last blogs posted :) so if a user updates his blog, he won't appear in the 5 spaces and he would let other users appear :) that would be nice

dirtycrow 09-12-2007 11:25 PM

i installed this (after RSS instructions) and now i have this error on the top of my forum

Quote:

Parse error: syntax error, unexpected '*' in /home/XXX/public_html/forums/index.php(63) : eval()'d code on line 139
I already unistalled both plug ins and the error still exisits. please help.

now I tried to reinstall the product and get this

Quote:

Parse error: syntax error, unexpected '*' in /home/kappat2/public_html/forums/index.php(63) : eval()'d code on line 171

ericgtr 09-12-2007 11:41 PM

The RSS is separate, the two should not be installed together. If everything is pulled you should have no errors. Make sure remove the forumhome_start plugin from the RSS instructions, it's under vbulletin titled "Latest Blogs" (it's not a part of the original plugin) it's under vbulletin.

dirtycrow 09-13-2007 02:35 AM

Quote:

Originally Posted by ericgtr (Post 1337956)
The RSS is separate, the two should not be installed together. If everything is pulled you should have no errors. Make sure remove the forumhome_start plugin from the RSS instructions, it's under vbulletin titled "Latest Blogs" (it's not a part of the original plugin) it's under vbulletin.

thank did it, thanks ;)

Trevor Hannant 09-17-2007 04:47 PM

Anyone else getting '0 views' against all blogs showing on the list?

I know they've been read as some have comments.....

Bounce 09-17-2007 05:13 PM

Quote:

Originally Posted by Trevster (Post 1340974)
Anyone else getting '0 views' against all blogs showing on the list?

I know they've been read as some have comments.....

https://vborg.vbsupport.ru/showpost....8&postcount=27 works ok for me trev

Trevor Hannant 09-17-2007 05:27 PM

Quote:

Originally Posted by hIBEES (Post 1340994)

Awrite J!

Just tried replacing the code with that one but still seeing 0 views for all showing on there. You got a screen shot you could mail over showing it working mate?


T

Bounce 09-17-2007 06:33 PM

Quote:

Originally Posted by Trevster (Post 1341014)
Awrite J!

Just tried replacing the code with that one but still seeing 0 views for all showing on there. You got a screen shot you could mail over showing it working mate?


T

Aye sound mate,

Screenshot here mate, I used the code in post 27

Bounce 09-17-2007 07:12 PM

Maybe not as its not updated for a wee while and i've clicked on one of the blog entries a few times but don't know how the "views" work.. if its per link or Unique views

Only time will tell I suppose :eek::D


Edit:Aye its updating nae probs

PoetJA-1975 09-18-2007 08:53 AM

Very nice - Thanx for sharing!
I do have a question though - See the pic attached...
I have the blogs link in our Forums section - I would like to put the Blog Posts table right in the description - but for some reason the variables aren't really showing - I know the modification wasn't made for it - but is there any way you can help me with fixing the code so it does like the attached pic?

Thanx again - Nice share

Jacquii.

https://vborg.vbsupport.ru/

ericgtr 09-18-2007 04:54 PM

Quote:

Originally Posted by PoetJA-1975 (Post 1341565)
Very nice - Thanx for sharing!
I do have a question though - See the pic attached...
I have the blogs link in our Forums section - I would like to put the Blog Posts table right in the description - but for some reason the variables aren't really showing - I know the modification wasn't made for it - but is there any way you can help me with fixing the code so it does like the attached pic?

Thanx again - Nice share

Jacquii.

http://img217.imageshack.us/img217/3236/40517678et0.gif

So this is on the forumhome at the bottom? The product code uses the forumhome_start hook, you can try moving it to forumhome_complete but I am not sure that will work.

pteal 09-21-2007 11:45 AM

Excellent, Installed it and works a treat :)

PoetJA-1975 09-22-2007 12:55 AM

Quote:

Originally Posted by ericgtr (Post 1341836)
So this is on the forumhome at the bottom? The product code uses the forumhome_start hook, you can try moving it to forumhome_complete but I am not sure that will work.

Nope - didn't work - Thanx anyway - a great modification for vB Blog ;)

Jacquii.

piskotilki 09-22-2007 06:23 PM

my blog is UTF-8 but my forums characters is not utf 8 and doing character problem

Blackhat 09-24-2007 08:48 AM

can I get this into a sidebar instead of the bottom ?

AzH 10-06-2007 07:58 AM

<a href="http://lurkingmastermind.com/forums/blogs/evil/yesterday-s-entries-30/" target="_blank">http://lurkingmastermind.com/forums/...-s-entries-30/</a>

Problem. Entries saved as draft appear in the latest blogs table and when click naturally throw up an error message.

Hengest 10-06-2007 01:54 PM

Just installed, thanks!

Edit: How do I hide this from non members or any other user group?

zCarot 10-11-2007 06:53 PM

I made fix for private blog entries. Not good (I just cut some code form blog_functions), but works =)
PHP Code:

//Latest Blogs

require_once(DIR '/includes/blog_functions_shared.php');

$having_or = array();
    if (!
can_moderate_blog())
    {
        if (
$vbulletin->userinfo['userid'])
        {
            
$having_or[] = "userid = " $vbulletin->userinfo['userid'];
            
$having_or[] = "(bu.options_ignore & " $vbulletin->bf_misc_vbblogsocnetoptions['canviewmyblog'] . " AND ignoreid IS NOT NULL)";
            
$having_or[] = "(bu.options_buddy & " $vbulletin->bf_misc_vbblogsocnetoptions['canviewmyblog'] . " AND buddyid IS NOT NULL)";
            
$having_or[] = "(bu.options_everyone & " $vbulletin->bf_misc_vbblogsocnetoptions['canviewmyblog'] . " AND (bu.options_buddy & " $vbulletin->bf_misc_vbblogsocnetoptions['canviewmyblog'] . " OR buddyid IS NULL) AND (bu.options_ignore & " $vbulletin->bf_misc_vbblogsocnetoptions['canviewmyblog'] . " OR ignoreid IS NULL))";
        }
        else
        {
            
$having_or[] = "bu.options_everyone & " $vbulletin->bf_misc_vbblogsocnetoptions['canviewmyblog'];
        }
    }

    
$having_join = array();
    
$having_select = array();
    if (
$vbulletin->userinfo['userid'])
    {
        
$having_join[] = "LEFT JOIN " TABLE_PREFIX "userlist AS buddy ON (buddy.userid = blog.userid AND buddy.relationid = " $vbulletin->userinfo['userid'] . " AND buddy.type = 'buddy')";
        
$having_join[] = "LEFT JOIN " TABLE_PREFIX "userlist AS ignored ON (ignored.userid = blog.userid AND ignored.relationid = " $vbulletin->userinfo['userid'] . " AND ignored.type = 'ignore')";
        
$having_select[] = "ignored.relationid AS ignoreid, buddy.relationid AS buddyid";
    }

$latestblogs $db->query(
    SELECT blog.blogid, blog.title, blog.username, blog.dateline, blog.userid, blog.views, options_everyone, options_buddy
    " 
. (!empty($having_select) ? ", " implode(", "$having_select) : "") . "
    FROM " 
TABLE_PREFIX "blog as blog
    LEFT JOIN " 
TABLE_PREFIX "blog_user as bu ON (bu.bloguserid = blog.userid)
    " 
. (!empty($having_join) ? implode("\r\n"$having_join) : "") . "
    WHERE blog.state='visible' AND blog.pending='0'
    " 
. (!empty($having_or) ? "HAVING " implode("\r\n\tOR "$having_or) : "") . "
    ORDER BY blog.dateline DESC 
    LIMIT 10 
"
); 
while (
$showblogs=$db->fetch_array($latestblogs)) 

    
$showblogsprivate false;
    if (
can_moderate() AND $showblogs['userid'] != $vbulletin->userinfo['userid'])
    {
        
$everyoneelsecanview $showblogs['options_everyone'] & $vbulletin->bf_misc_vbblogsocnetoptions['canviewmyblog'];
        
$buddiescanview $showblogs['options_buddy'] & $vbulletin->bf_misc_vbblogsocnetoptions['canviewmyblog'];
        if (!
$everyoneelsecanview AND (!$showblogs['buddyid'] OR !$buddiescanview))
        {
            
$showblogsprivate true;
        }
    }

    
$counter++; 
    
$blog_userid $showblogs['userid'];
    
$blogid $showblogs['blogid'];
    
$blog_title $showblogs['title'];
    
$blog_views $showblogs['views'];
    
$blog_username $showblogs['username'];
    
$blog_dateline vbdate($vbulletin->options['dateformat'], $showblogs['dateline']);
   
    if (
$showblogsprivate)
        
$spitblogs_title .= '<img class="inlineimg" src="/images/misc/blog/key.gif" alt="Private Entry"  border="0" />'// very bad code =)
    
$spitblogs_title .= "<a href=\"blog.php?b=$blogid\">$blog_title</a>";
    
$spitblogs_title .= "<br /> ";
    
$spitblogs_views .= $blog_views;
    
$spitblogs_views .= "<br /> ";
    
$spitblogs_username .= "<a href=\"blog.php?u=$blog_userid\">$blog_username</a>";
    
$spitblogs_username .= "<br /> ";
    
$spitblogs_date .= $blog_dateline;
    
$spitblogs_date .= "<br /> ";
    
    if (
$counter 5
    { 
        
$spitblogs .= "<br /> "
    } 
    elseif (
$counter == 5)
    {
        break;
    }
}
//Latest Blogs 


imprezion 10-18-2007 01:43 AM

how do I install the blogs in my homepage instead of the forum home?

lifanovsky 10-21-2007 03:05 PM

Quote:

Originally Posted by zCarot (Post 1357718)
I made fix for private blog entries. Not good (I just cut some code form blog_functions), but works =)

Thanks for the Russian translation, zCarot - using it. 8)

Concerning the hack you provided - it caused troubles when I tried to use it - half of my users could access the forum. So I switched back to the original version...

Thanks for the try anyway...

zCarot 10-21-2007 03:29 PM

Quote:

Originally Posted by lifanovsky (Post 1365116)
Thanks for the Russian translation, zCarot - using it. 8)

You're welcome
Quote:

Originally Posted by lifanovsky (Post 1365116)
Concerning the hack you provided - it caused troubles when I tried to use it - half of my users could access the forum. So I switched back to the original version...

Thanks for the try anyway...

DB error (show it)? Or just blank page?

BigDog56 10-24-2007 04:31 PM

Very nice! Thank you, looks good!

mmmender 10-26-2007 06:42 AM

I've got a major problem with this on my forumhome. I think it may be due to the fact that my server admin recently upgraded to php5. Installing the product as-is and making the template edit as-is I get a black table where the list of recent blogs is supposed to be (see image). I tried altering both the .xml file and the template edit to replace any .php extensions with .php5 extensions but I'm still getting a black table instead of the blog data. Can you please help?

mmmender 10-26-2007 08:21 AM

I solved the problem myself. It was a style problem. I think you should mention in your read me file that people might want it to match their forums styles so, personally, I would change this:

Code:

<td class="smallfont">$spitblogs_username</td>
<td class="smallfont">$spitblogs_title</td>
<td class="smallfont">$spitblogs_views</td>
<td class="smallfont">$spitblogs_date</td>

to this:
Code:

<td class="alt2">$spitblogs_username</td>
<td class="alt1">$spitblogs_title</td>
<td class="alt1">$spitblogs_views</td>
<td class="alt1">$spitblogs_date</td>



All times are GMT. The time now is 01:37 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01629 seconds
  • Memory Usage 1,965KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (2)bbcode_html_printable
  • (1)bbcode_php_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete