UKBusinessLive |
02-13-2009 08:19 PM |
Quote:
Originally Posted by TandyServices
(Post 1743222)
Thanks :) We did too though lol.. Two of us on it for over an hour now :p
|
Try this James
you have the condition at the start which looks like this
Code:
<if condition="$post['fieldX']">
Thats the Custom field attribute for where the user adds their Paypal Address the X will be the number of that field
Try also adding the condition for the Multichoice menu ;) That should make the Images show so, below that and with the FieldZ attribute change the Z to the number of the field which controls the images, so both conditions should look like this
Code:
<if condition="$post['fieldX']">
<if condition="$post['fieldZ']">
don't forget to ad the other end tag, just below the other one at the end of the code
Try that and let me know :)
Make it like this one below
Code:
<if condition="is_member_of($bbuserinfo, 2, 5, 6, 7, 9, 10, 11, 13)">
<if condition="$post['field31']">
<if condition="$post['field32']">
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=$post[field31] &item_name=Buy me a Beer&amount=2%2e00&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8" target="_blank" rel="nofollow" title="Click to donate to my post">
<img alt="Donate to my Post" border="0" src="http://www.mysite.com/images/donate/$post[field32].png" border="0"/></if></if></if>
Copy this code and try again ;)
You also left off the end of the $post[field32] it should be $post[field32].png"
Also is Mysite.com your forum's url?? or is it where you have the pictures hosted??? i got a funny feeling your not adding the pictures right
|