ok I figured out a way to manipulate the templates to link to a specific post. This is not by any means a great alternative but as I said before it works for me.
First I am only allowing admin to post these because it's bound to get too many broke links. So first I added permission tags around the "Add New Quote" link in the quote_randomquote and quote_listquote templates
Then I editted
PHP Code:
$randomquote[context]
inquote_randomquote and quote_listbit.
K first the changes
( I didn't think to to copy the code prior to posting this so you might have to search by eye instead of with a text search. Not a very big templates anyway )
Find in quote_listbit template
PHP Code:
<if condition="$randomquote[context]">
( $randomquote[context] )
</if>
Change to fit your url (((Make sure you edit it)))
PHP Code:
<if condition="$randomquote[context]">
<a href="http://www.yoursite.com/your forum folder/showthread.php?t=$randomquote[context]">Read More, image anything you want!!</a>
</if>
Save and close
Next in the inquote_randomquote template ( If you only want to allow admin to submit quotes) **Recommended if you use this linking mod**
Find
PHP Code:
$vbphrase[add_a_quote]
Change to
PHP Code:
<if condition="$vbulletin->userinfo['permissions']['adminpermissions']"><a href="$vboptions[bburl]/quotes.php?do=addquote">$vbphrase[add_a_quote]</a></if>
Then find
PHP Code:
<p style="font-weight:bold;margin-left:25%;">- <if condition="$randomquote[context]">$randomquote[context]</if></p>
Change it same as the last template
PHP Code:
<p style="font-weight:bold;margin-left:25%;">- <if condition="$randomquote[context]"> <a href="http://www.yoursite.com/your forum foldershowthread.php?t=$randomquote[context]">Read More</a></if></p>
Next in the quote_listquote template
Find
PHP Code:
(<a href="quotes.php?$session[sessionurl]&do=addquote">$vbphrase[add_a_quote]</a> )
Change to
PHP Code:
<if condition="$vbulletin->userinfo['permissions']['adminpermissions']">(<a href="quotes.php?$session[sessionurl]&do=addquote">$vbphrase[add_a_quote]</a> - </if>
Now to link to a post all you need to do is enter just the thread ID# in the context field.
Example: You want to link to this thread below all you need to enter is 8 in the context field.
PHP Code:
http://www.trulyunusual.com/wards/showthread.php?t=8
Alternatively you could set it up so it will link to external pages aswell very easily. Just play with it. BTW I removed the ( and ) because they are cosmetic and interfer when trying to link.
Hope this helps some one.
This hack be used in many applications. Random images, random links, random facts with read more etc...
Your the best Cap'n
Jaks