php

Stripe - Card Processing for Developers

Stripe - Card Processing for Developers

Over the past year plus, I've gotten a handful of emails about donations to StuffAndyMakes.com. I've also been offered payments for customizing PCB designs or even just making the files available. Some have requested kits of the Iron Man Arc Reactor for payment. I hadn't taken the time to get it set up. Well, no more! I set up a Donate page, thanks to the amazing people at Stripe! Stripe is a fantastic and ridiculously easy-to-use card processing system built specifically for developers. It's easy to sign up, they take a little in fees per successful charge (2.9% + 30¢) and it even works in your mobile apps. Best of all: It ain't PayPal! Woot!

From their website:

You don’t need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Stripe.js lets you build your own payment forms while still avoiding PCI requirements.

 

Fix Missing Comments Problem in Notepad WordPress Theme

Some of you regulars may have noticed that comments were magically not appearing at the bottom of some of the posts on this blog. I snooped around in the code behind the theme and discovered one line of PHP that caused comments to sometimes show and sometimes not show. I'd like to share what I found to help others who are having the same problem. Let me add this little tidbit: I LOVE this Notepad theme by Nick La (http://ndesign-studio.com/wp-themes). His work is Very excellent. I contacted Nick through his contact form to let him know about the one-line fix to the comments.php file in his theme. I had installed this theme when my blog was running as WordPress 2-something, not 3.

Here is the easy fix: Edit your comments.php file and find this line (roughly line 24):

wp_list_comments('type=comment&callback=mytheme_comment');

Change it to this:

wp_list_comments(array('callback'=>'mytheme_comment'));

Update the file (save it). That should solve the issue.