<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>h4x3d.com &#187; paypal</title>
	<atom:link href="http://h4x3d.com/tag/paypal/feed/" rel="self" type="application/rss+xml" />
	<link>http://h4x3d.com</link>
	<description>online portfolio of Julian Klewes</description>
	<lastBuildDate>Mon, 25 Jul 2011 13:18:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Adding a paypal button to your wordpress page</title>
		<link>http://h4x3d.com/adding-a-paypal-button-to-your-wordpress-page/</link>
		<comments>http://h4x3d.com/adding-a-paypal-button-to-your-wordpress-page/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 15:39:23 +0000</pubDate>
		<dc:creator>jz</dc:creator>
				<category><![CDATA[asides]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[donate]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.h4x3d.com/?p=1398</guid>
		<description><![CDATA[update: f§*king wordpress mu won&#8217;t let me enter tags in my posts. I have tried the wordpress RAW plugin and other filters, but still. more updates on this tomorrow -> solution There are different approaches to doing this (adding a paypal button to your wordpress page, or any html or php website): You can copy&#38;paste [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.h4x3d.com/wordpress-mu-embed-not-working-for-youtube-input-code-etc/">update: f§*king wordpress mu won&#8217;t let me enter  tags in my posts. I have tried the wordpress RAW plugin and other filters, but still. more updates on this tomorrow -> solution</a></strong></p>
<p>There are different approaches to doing this (adding a paypal button to your wordpress page, or any html or php website):</p>
<p>You can copy&amp;paste the code you find on most pages and wonder why you get really a lot of spam emails<br />
or you can use the &#8220;secure merchant id&#8221; code from paypal<br />
or you can grab a plugin at wordpress.org</p>
<p>To explain the first (revealing code)</p>
<pre><span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>form</span> <span style=' color: Red;'>name</span>=”_xclick” <span style=' color: Red;'>action</span>=”https://www.paypal.com/cgi-bin/webscr” <span style=' color: Red;'>method</span>=”post”<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>input</span> <span style=' color: Red;'>type</span>=”hidden” <span style=' color: Red;'>name</span>=”cmd” <span style=' color: Red;'>value</span>=”_xclick”/<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>input</span> <span style=' color: Red;'>type</span>=”hidden” <span style=' color: Red;'>name</span>=”business” <span style=' color: Red;'>value</span>=”user@spam-me-please.com”/<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>input</span> <span style=' color: Red;'>type</span>=”hidden” <span style=' color: Red;'>name</span>=”item_name” <span style=' color: Red;'>value</span>=”Customer Service”/<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>input</span> <span style=' color: Red;'>type</span>=”hidden” <span style=' color: Red;'>name</span>=”currency_code” <span style=' color: Red;'>value</span>=”USD”/<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>input</span> <span style=' color: Red;'>type</span>=”hidden” <span style=' color: Red;'>name</span>=”amount” <span style=' color: Red;'>value</span>=”1.00″/<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>input</span> <span style=' color: Red;'>type</span>=”image” <span style=' color: Red;'>src</span>=”http://www.paypal.com/en_US/i/btn/btn_donate_LG.gif” <span style=' color: Red;'>border</span>=”0″ <span style=' color: Red;'>name</span>=”submit” <span style=' color: Red;'>alt</span>=”Make payments with PayPal - it’s fast, free and secure!”/<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span>/<span style=' color: Maroon;'>form</span><span style=' color: Blue;'>&gt;</span></pre>
<p>While this has its advantages: you can easily specify the parameters, it also has the problem that your email address is very likely to be scraped and spammed by bots. So next time you receive one of those fake paypal &#8220;you need to click here to reactivate your account&#8221; emails&#8230; guess why you are receiving it.</p>
<p>I use the second version, the paypal secured id, because I am not too keen to exposing (any) email address to spam bots. The code below will generate a paypal button with my id in it. To change that or to get your code you need to login to paypal and get it from the merchant tab. Or you can enter &#8220;paypal button&#8221; in the search field top right of the page.</p>
<p>2) Click on Merchant services.<br />
3) Click on websites payment standards.<br />
4) Click on accept contributions.<br />
5) Click on get donation button.</p>
<pre><span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>form</span> <span style=' color: Red;'>action</span>="<span style=' color: Blue;'>https://www.paypal.com/cgi-bin/webscr</span>" <span style=' color: Red;'>method</span>="<span style=' color: Blue;'>post</span>"<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>input</span> <span style=' color: Red;'>type</span>="<span style=' color: Blue;'>hidden</span>" <span style=' color: Red;'>name</span>="<span style=' color: Blue;'>cmd</span>" <span style=' color: Red;'>value</span>="<span style=' color: Blue;'>_s-xclick</span>"/<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>input</span> <span style=' color: Red;'>type</span>="<span style=' color: Blue;'>hidden</span>" <span style=' color: Red;'>name</span>="<span style=' color: Blue;'>hosted_button_id</span>" <span style=' color: Red;'>value</span>="<span style=' color: Blue;'>10155388</span>"/<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span><span style=' color: Maroon;'>input</span> <span style=' color: Red;'>type</span>="<span style=' color: Blue;'>image</span>" <span style=' color: Red;'>src</span>="<span style=' color: Blue;'>https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif</span>" <span style=' color: Red;'>style</span>="<span style=' color: Blue;'>width: 100px; float: right;</span>" <span style=' color: Red;'>border</span>="<span style=' color: Blue;'>0</span>" <span style=' color: Red;'>name</span>="<span style=' color: Blue;'>submit</span>" <span style=' color: Red;'>alt</span>="<span style=' color: Blue;'>PayPal - The safer, easier way to pay online!</span>"/<span style=' color: Blue;'>&gt;</span>
<span style=' color: Blue;'>&lt;</span>/<span style=' color: Maroon;'>form</span><span style=' color: Blue;'>&gt;</span></pre>
<p>And now to the fun part actually: you will not be able to copy and paste the code(s) mentioned above, because wordpress will strip the input fields and nothing will display. So unless you are putting this code into your template (e.g. by including it in a separate php file), it won&#8217;t work, I believe.</p>
<p>You can however grab a wordpress plugin, like this <a href="http://wordpress.org/extend/plugins/paypal-donations/">paypal plugin</a> to help you out.</p>
<p>Also of help &#8211; this support post at <a href="http://en.forums.wordpress.com/topic/adding-a-custom-paypal-link-easy-as-1-2-3?replies=7">wordpress</a></p>
<p>hope this helps anyone,<br />
best,<br />
jez</p>
]]></content:encoded>
			<wfw:commentRss>http://h4x3d.com/adding-a-paypal-button-to-your-wordpress-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wpdesigner (Small Potato) to refund ThemeClub money via Paypal</title>
		<link>http://h4x3d.com/wpdesigner-small-potato-to-refund-themeclub-money-via-paypal/</link>
		<comments>http://h4x3d.com/wpdesigner-small-potato-to-refund-themeclub-money-via-paypal/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 11:24:23 +0000</pubDate>
		<dc:creator>jez</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[pavel]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[sp]]></category>
		<category><![CDATA[wpdesigner]]></category>

		<guid isPermaLink="false">http://www.h4x3d.com/?p=1116</guid>
		<description><![CDATA[Former WPdesigner.com owner Small Potato has just refunded me $5 via Paypal and included this message: Message: This is Small Potato. Thank you for supporting me before Wpdesigner.com was sold. I&#8217;m sorry for the trouble and frustration. Please accept this refund for your themes club registration fee and remember to cancel your subscription to Wpdesigner.com [...]]]></description>
			<content:encoded><![CDATA[<p>Former WPdesigner.com owner Small Potato has just refunded me $5 via Paypal and included this message:</p>
<p><em>Message:  This is Small Potato. Thank you for supporting me before Wpdesigner.com<br />
was sold. I&#8217;m sorry for the trouble and frustration. Please accept this refund for<br />
your themes club registration fee and remember to cancel your subscription to<br />
Wpdesigner.com to avoid renewing your membership.</em></p>
<p>Noble gesture man and really a shame what this Pavel guy did with the website.</p>
]]></content:encoded>
			<wfw:commentRss>http://h4x3d.com/wpdesigner-small-potato-to-refund-themeclub-money-via-paypal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

