Quote:
Originally Posted by cagbaazee
please check yr pm. Thanks. please do the needful.
I face 2 problem
1/. We cannot process this transaction because there is a problem with the PayPal email address supplied by the seller. Please contact the seller to resolve the problem. If this payment is for an eBay listing, you can contact the seller via the "Ask Seller a Question" link on the listing page. When you have the correct email address, payment can be made at www.paypal.com.
2/. I acn see the buy me Beer link but no image
Do reply Thanks
|
You have 2 problems
first you need to add the 2nd fieldX in the paypal code, because although you did the first one, you failed to add the second
Code:
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=$post[fieldX]
The second problem being is that you can see the link (Red Cross) but no picture, this means that you have either not uploaded the image to the directory in your forum server or you havn't edited the url of the location in the code.
Also when you add the code to the postbit template make sure there are no gaps or extra lines in the code, The code you posted here was like this
Code:
<if condition="$post['field6']">
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=$post[fieldX]&item_name=Buy me a
Beer&amount=3%2e00&no_shipping=0&no_note=1&tax=0¤cy_code=GBP&lc=GB&bn=PP%2 dDonationsBF&charset=UTF%2d8" target="_blank"
rel="nofollow" title="Click to buy me a Beer">
<img alt="Buy me a Beer?" border="0" src="http://www.xxxxxxx.info/vbforum/images/misc/beer.png" border="0"/>
</if>
It should be like this
Code:
<if condition="$post['fieldX']">
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=$post[fieldX]&item_name=Buy me a Beer&amount=3%2e00&no_shipping=0&no_note=1&tax=0¤cy_code=GBP&lc=GB&bn=PP%2dDonationsBF&charset=UTF%2d8" target="_blank" rel="nofollow" title="Click to buy me a Beer">
<img alt="Buy me a Beer?" border="0" src="http://www.yourforum.com/images/misc/beer.png" border="0"/>
</if>
Hope that helps