Buy now button and thankyou page for my website?

For wordpress plugins you can see the below links http://wpmu.org/8-wordpress-paypal-plugins-for-receiving-payments-and-donations/ http://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768 http://www.bestwpplugins.net/wordpress-plugins-for-paypal-integration.html Check this plugin link it might work in your case and its tested in wordpress 3.1 its working fine. url: http://wordpress.org/extend/plugins/wordpress-easy-paypal-payment-or-donation-accept-plugin/ To customize the paypal payment and thankyou message you can code as per your requirement but u need to know the paypal … Read more

Add estimated value for a post according to the number of words

Here’s an idea for a starting point, by looking how the word counting is done in the /wp-admin/js/post.js file: /** * Testing word price calculations */ add_action( ‘after_wp_tiny_mce’, function() { ?><script> ( function( $ ) { $( function() { // Init var $content = $( ‘#content’ ), $count = $( ‘#wp-word-count’ ).find( ‘.word-count’ ), total_price … Read more

Paypal API and WordPress

Try working through the source code of a plugin such as PayPal Framework. From your question, the WP side is fairly trivial, but you should study general PayPal tutorials to understand the API, for example, here’s the first search result from Google for PayPal API tutorial: Using PayPal’s IPN with PHP Also some additional helpful … Read more