Seattle

Seattle is a coastal seaport city and the seat of King County, in the U.S. state of Washington.

Disqus comments with Jquery Mobile

Recently, I started a project that required the use of two very popular components, Disqus Comments and jQuery Mobile. I was able to make them work together and decided to write a tutorial to help others trying to implement these two components. The issue Currently Disqus supports mobile devices and loads without any problems in static pages, but there […]

Remove URL / Website field from WordPress comment form

To remove the “website” field from the WordPress comment form (without hacking it) add the following code to your theme’s function.php file. //Remove comments url field function remove_comment_form_url_field( $field ){ return false; } add_filter( ‘comment_form_field_url’, ‘remove_comment_form_url_field’ );

Download large files avoiding out of memory errors

Recently, I was working on a site for one of my customers and I was asked to fix an issue they had uploading and downloading large image files ( 9M+ ). The issue The customer has a shopping cart that allows the user to download ZIP files of the items purchased. User can add as many products as […]