Quote:
Originally Posted by |oR|Greg
Oh Mr. Andrew, I was searching for 2 things and couldn't find them, don't know if they exist or if they're possible, so here we go!
1. Is there a variable to check if the description field is filled out? The purpose of this would be, that if it isn't, have in IF statement in the template(s) that checks and if no description, then to use the title instead.
|
Ideally this would be a test on $linkdesc, but it's made slightly more complicated because a blank description is actually passed to the template as a non-breaking space to avoid producing a null table cell (which is invalid html). The most reliable approach would be to edit local_links_include.php, find function get_linklistbit, then find the line:
Code:
if (!trim($linkdesc)) $linkdesc = " ";
Either add yourself a new variable which you test against, or change the assignment so that $linkdesc is assigned a normal space character and then you can test against that in the template.
Quote:
Originally Posted by |oR|Greg
2. Is there a way to include, IF available, the thumbnail picture of a link in the auto-created thread? Not as an attachment, but with the IMG tags.
|
For this, I think you should edit the autothread plugin. After line:
Code:
construct_phrase($vbphrase['ldm_thread_create_body'], $linkname, $linkdesc, $gotolink, $master_title);
add the line
Code:
if ($imgthumb) $thread_message = '[img]'.$vbulletin->options['homeurl'].$imgthumb.'[/img] '.$thread_message;