MyBB Hacks

Full Version: Product Review
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
(05-10-2012 06:46 AM)RateU Wrote: [ -> ]It is in pf_postbit_first template.

Thank you!
Your <img> tags on forumdisplay_thread have nothing in the src attribute.
As for within showthread, have you even uploaded xthreads_attach.php?  I get a 404 from it.
http://trailerreview.com/xthreads_attach.php
(05-10-2012 10:44 AM)ZiNgA BuRgA Wrote: [ -> ]Your <img> tags on forumdisplay_thread have nothing in the src attribute.
As for within showthread, have you even uploaded xthreads_attach.php?  I get a 404 from it.
http://trailerreview.com/xthreads_attach.php

I find three places in the pf_forumdisplay_thread template that have img src (listed below) which one do i need to add something to and if you don't mind what do I add? I am very new to this whole process and have been learning by reading forums.

Thanks for the 404 error fix, I did miss transferring the xthreads_attach.php file over to the server.


#1

Code:
<img src="{$GLOBALS['threadfields']['pfpic']['thumbs']['320x240']['url']}" alt="{$thread['subject']} Screenshot" title="{$thread['subject']} Screenshot" width="{$GLOBALS['threadfields']['pfpic']['thumbs']['320x240']['w']}" height="{$GLOBALS['threadfields']['pfpic']['thumbs']['320x240']['h']}" />


#2

Code:
<img src="{$GLOBALS['threadfields']['pfpic']['thumbs']['88x66']['url']}" alt="{$thread['subject']} Screenshot" title="{$thread['subject']} Screenshot" width="{$GLOBALS['threadfields']['pfpic']['thumbs']['88x66']['w']}" height="{$GLOBALS['threadfields']['pfpic']['thumbs']['88x66']['h']}" />


#3

Code:
<img src="{$theme['imgdir']}/{$folder}.gif" alt="{$folder_label}" title="{$folder_label}" />


Or am I looking in the complete wrong place?

Try using the default Image Thumbnail Generation settings for your pfpic custom thread fields settings, like in the first post. Then run the Rebuild XThreads Attachment Thumbnails tools.
(05-11-2012 03:29 AM)RateU Wrote: [ -> ]Try using the default Image Thumbnail Generation settings for your pfpic custom thread fields settings, like in the first post. Then run the Rebuild XThreads Attachment Thumbnails tools.

I deleted the old one and remade the pfpic thread and then ran the fix tool with no luck. I keep passing this field on the pfpic settings and cant help but wonder if this has anything to do with it?(see attached screenshot)
thanks
Edit a thread, do you see an image in the image uploader?
(05-11-2012 03:56 AM)RateU Wrote: [ -> ]Edit a thread, do you see an image in the image uploader?

No image appears in the uploader, but the name of the image is clickable and takes you to the image (not sure if that has any meaning.) screen shot below.
In your Image Thumbnail Generation settings for your pfpic custom thread fields settings, put this value:

Code:
88x66|160x120|320x240

Rebuild the XThreads attachments.

(05-11-2012 04:46 AM)RateU Wrote: [ -> ]In your Image Thumbnail Generation settings for your pfpic custom thread fields settings, put this value:

Code:
88x66|160x120|320x240

Rebuild the XThreads attachments.


Apparently I messed that up or didn't follow your original directions properly the first time because it is now working beautifully! Thank you for your help and patience with this newbie!
(05-11-2012 04:59 AM)TrailerReview Wrote: [ -> ]with this newbie
I'm also a newbie, TrailerReview Biggrin

Just as a reference, whatever the thumbnails size can be displayed is depends on whatever size listed in our Image Thumbnail Generation settings.
For example, if we want to display a thumbnail size 100x100, 200x200, 300x300, we need to add it to the Image Thumbnail Generation list, separated by |

Code:
100x100|200x200|300x300

Then, we can display it with this code in our template (for example only):

HTML Code
<img src="{$threadfields['key']['thumbs']['100x100']['url']}" alt="" />

Just change the 100x100 with one of our thumbnail size in the list, and the key with our custom thread fields key.

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Reference URL's