vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Forum Home Enhancements - New Latest Album Pictures - Forum Home (https://vborg.vbsupport.ru/showthread.php?t=228618)

dsantana 05-16-2012 11:16 PM

How can I control the size of the images for this? They are showing up large as in my forum and not as thumbnails.

canna01 05-18-2012 09:41 PM

Thank you Atakan KOC for this Mod.

Perfect and easy install. Hell I'm a beginner and only took like 2 min.

Does it only change pics on refresh/reload or can it be set to change at a set period of time? Have looked but haven't found the answer yet so any advise would be appreciated.

Again thanks loads.

K!nG 05-19-2012 04:06 AM

Quote:

Originally Posted by Front Range 4x4 (Post 2329731)
In response to PM's etc here how my newalbum_picture looks. Basic inline css...

Code:

<td align="center">
<a class="picture" href="album.php?albumid={vb:raw lpicture.albumid}&amp;attachmentid={vb:raw lpicture.attachmentid}">
<img  src="attachment.php?attachmentid={vb:raw lpicture.attachmentid}&amp;thumb=1&amp;d=1258906442" alt="Front Range 4x4 Member Rig" style="border:1px solid #000000;background:white;padding:4px;-webkit-box-shadow:0px 2px 2px rgba(0,0,0,0.8);-moz-box-shadow:0px 2px 2px rgba(0,0,0,0.8);box-shadow:0px 2px 2px rgba(0,0,0,0.8);border-image:initial;"/>
</a>
<br />
<a href="member.php?u={vb:raw lpicture.userid}">
{vb:raw lpicture.musername}
</a>
</td>


It's the same code I used in my albums, I like consistency.

Hi Front Range,,,

I am probably asking for too much but is it possible for you to share ur xml files with all the updates ??? If u can will really appreciate it or if u can send me via pm. .. Thanks in advance.

Chadi 05-24-2012 09:01 PM

Not sure why, this is not showing up (its enabled though). Using vb 4.2.0

Front Range 4x4 05-27-2012 11:28 PM

Quote:

Originally Posted by K!nG (Post 2330609)
Hi Front Range,,,

I am probably asking for too much but is it possible for you to share ur xml files with all the updates ??? If u can will really appreciate it or if u can send me via pm. .. Thanks in advance.

I'm not sure what you're asking. :o

Chadi 05-29-2012 12:50 AM

Anyone know how to get this working?

CharlieDelta 05-29-2012 01:46 AM

Quote:

Originally Posted by Chadi (Post 2334111)
Anyone know how to get this working?

I am using it with these edits and with Front Range 4x4's very nice style edit.

Chadi 05-29-2012 03:30 AM

Thanks, but those 2 templates do not even exist in my template area. The plugin is installed otherwise.

Btw, is it normal to have this option in admincp > options area

" vB3 Member Album"

I only have this plugin installed and and this mod:
https://vborg.vbsupport.ru/showthread.php?t=237931

I don't know why the vb3 one is there. I uninstalled all plugins 100% prior to upgrading from 3.8x

CharlieDelta 05-29-2012 12:47 PM

The templates do exist you are just not looking in the right spot. (assuming you still have the mod installed) ;)
Look under
Code:

"New Posting Templates"
and they are at the very top. :)

Sorry I can't help you with the VB3 issue but I would suggest you remove the link located inside "Help" as it directs to your admincp.

Chadi 05-29-2012 12:58 PM

I don't see this in plugin manager > New Album Picture Forum Home (there are 2 of these), none have those codes

the cache template one has only

Code:

if (THIS_SCRIPT == "index")
{
// global $cache;
$cache[] = 'newalbum_picture';
$cache[] = 'newalbum_print';
}

forumhome_start has

Code:

if (
    (
        $vbulletin->options['socnet'] & $vbulletin->bf_misc_socnet['enable_albums']
        AND
        $permissions['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canviewmembers']
        AND
        $permissions['albumpermissions'] & $vbulletin->bf_ugp_albumpermissions['canviewalbum']
        AND
        $vbulletin->options['new_enable_albums']
    )
)
{
  $displayrecords = ($vbulletin->options['new_afm_sayi'] ? $vbulletin->options['new_afm_sayi'] : 4);
    switch ($vbulletin->options['new_afm_dt'])
    {
      case 1:
      $sorgu = "ORDER BY dateline DESC LIMIT 0, $displayrecords";
      $resimlery = $vbphrase['new_afm_sec5'];
      break;
      case 2:
      $sorgu = "ORDER BY rand(NOW()) DESC LIMIT 0, $displayrecords";
      $resimlery = $vbphrase['new_afm_sec6'];
      break;
    } 
  $lpictures = $db->query("
  SELECT albumpicture.*, album.*, user.username, user.usergroupid,
  IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid
  FROM " . TABLE_PREFIX . "attachment AS albumpicture
  LEFT JOIN " . TABLE_PREFIX . "album AS album ON(album.albumid = albumpicture.contentid)
  LEFT JOIN " . TABLE_PREFIX . "user AS user ON(user.userid = album.userid)
  WHERE album.state = 'public' and albumpicture.contenttypeid = 8
  $sorgu 
  ");
  if ($db->num_rows($lpictures))
  {
    while ($lpicture = $db->fetch_array($lpictures))
    {
    $lpicture['musername'] = fetch_musername($lpicture);
    $lpicture['title'] = trim(strip_quotes($lpicture['title']));
    // eval('$resimler .= "' . fetch_template('afm_picture') . '";');
    $templater_x1 = vB_Template::create('newalbum_picture');
    $templater_x1->register('lpicture',$lpicture);
  $resimler .= $templater_x1->render();

    }
   
    $templater = vB_Template::create('newalbum_print');
    $templater->register('resimler',$resimler);
    $templater->register('resimlery',$resimlery);
    $template_hook['forumhome_wgo_pos2'] .= $templater->render();

  }
  $db->free_result($lpictures);
}


Even so, nothing shows up on my forumhome regardless :(


All times are GMT. The time now is 11:59 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.02568 seconds
  • Memory Usage 1,753KB
  • 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
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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