Quote:
Originally Posted by BadgerDog
As per the original post, I'm just trying to get a carriage return to separate the two "thanks" statements as opposed to having them run together.
Thanks ..
Regards,
Badger
v3.6.7pl1
|
If the attached image is what you're after; there's a few ways to accomplish this, but an easy one...
In the
product-post_thanks.xml file...
Find...
PHP Code:
<td>
<a href="post_thanks.php?$session[sessionurl]do=findthanks&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[post_thanks_search_user]</phrase></a>
</td>
<td>
<a href="post_thanks.php?$session[sessionurl]do=findthanks_user_gave&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[post_thanks_search_user_gave]</phrase></a>
</td>
Replace with...
PHP Code:
<td>
<a href="post_thanks.php?$session[sessionurl]do=findthanks&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[post_thanks_search_user]</phrase></a><br />
<a href="post_thanks.php?$session[sessionurl]do=findthanks_user_gave&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[post_thanks_search_user_gave]</phrase></a>
</td>