Posts

Showing posts from April, 2014

PayPal integration in PHP

Just follow some step and PayPal integration is ready to use. You need one test account for test this method. If you have already test account so use it. Otherwise create new from  www.developer.paypal.com and signup. After complete your PayPal test account follow this code for your PayPal integration.      1.      Create Form for send payment Paypal.php <?php include "../wp-config.php"; $paypal_url='https://www.sandbox.paypal.com/cgi-bin/webscr'; // Test Paypal API URL

How to Manually Reset WordPress Admin Password

Image
Step 1: Login to your cPanel and Select PHPMyAdmin Click on the PHPMyAdmin Icon in your cPanel.

WordPress Admin Page Hacks

1. How to Disable Dragging of Metaboxes in the Admin panel To stop users from dragging metaboxes around the admin area and dashboard just add the following code in your to  functions.php  in your theme folder. function disable_drag_metabox () {     wp_deregister_script ( 'postbox' ) ; } add_action ( 'admin_init' , 'disable_drag_metabox' ) ;