Pyament data transfer - how to online tips

Where to Find and How to Use PayPal Identity Token

PayPal Integrating with woocommerce or any other platform is a common issue, this is a real trouble. You never know where things are anymore. Here’s the step by step guide with snapshots to help you find the PayPal Identity Token for integrating with WordPress or any other platform. STEP 1: LOGIN TO YOUR ‘PAYPAL BUSINESS ACCOUNT‘ NOTE: […]

Where to Find and How to Use PayPal Identity Token Read More »

WordPress Memory Exhausted Errors – Increase PHP Memory

We have exchanged various customer sites, and some of the time a WordPress Memory Exhausted mistake shows up when initiating another module or doing some other errand. Typically the blunder resembles this: <pre> Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2348617 bytes) in /home4/xxx/public_html/wp-includes/plugin.php on line xxx </pre> we chose

WordPress Memory Exhausted Errors – Increase PHP Memory Read More »

Page Smooth Scrolling To ID

Sometime we need to use Smooth Scrolling to id function, it will redirect to the exact point where the content is. We can add this functionality through the code snippet… <a class=”scroll” href=”#comments”>Scroll to comments</a> jQuery(document).ready(function($) { $(“.scroll”).click(function(event){ event.preventDefault(); $(‘html,body’).animate({scrollTop:$(this.hash).offset().top}, 500); }); }); For wordpress user can use plugins to smooth scrolling to id. There

Page Smooth Scrolling To ID Read More »