Shopping Cart Transformation

Goku transforms into a Super Saiyan for the first time

Goku transforms into a Super Saiyan for the first time

The Dao of Dragon Ball has a brand new shopping cart.goku super saiyan transformation face

It was a simple PayPal button, but now it connects with an actual PHP based shopping cart.

The ebook is the only product at the moment. The cart will be nice once the physical book is available too, so it can handle shipping and quantity.

Some of you mentioned that you did not like PayPal. Well, I spent all day working on it, but now there are two payment options in the cart. You can check out with either PayPal or Google Checkout, and of course your credit card. That makes it a bit easier for everyone.

If there’s another payment method you’d like to use, then please let me know and I’ll see what I can do.

There’s also a brand new, big, and shiny “Add to Cart!” button on the buy page. Why not give it a shot? I dare ya!



//Get only the approved comments $args = array( 'status' => 'approve' ); // The comment Query $comments_query = new WP_Comment_Query; $comments = $comments_query->query( $args ); // Comment Loop if ( $comments ) { foreach ( $comments as $comment ) { echo '

' . $comment->comment_content . '

'; } } else { echo 'No comments found.'; }