2,175 reputation
524
bio website blog.ashfame.com
location Delhi, India
age 24
visits member for 2 years, 6 months
seen 4 hours ago
stats profile views 183

Developer + Entrepreneur + Opensource fanatic!

Working as Dragon Monk for AnattaDesign. We tackle user experience problems by creating products that fix them. We created Awesome Checkout and My Abandoned Carts.

You can get in touch via Twitter or check out my Github


Aug
24
comment Remove current-menu-item for a specific link
Check this answer wordpress.stackexchange.com/questions/1230/…
Aug
21
answered Contact Form 7 Custom module
Aug
21
asked Contact Form 7 Custom module
Aug
19
comment Upgrade Wordpress Database from 2.6 to 3.2
I added that info to my answer,thanks
Aug
19
revised Upgrade Wordpress Database from 2.6 to 3.2
added mroe info
Aug
18
answered Upgrade Wordpress Database from 2.6 to 3.2
Aug
18
answered Migrating from other CMS to WP - losing SEO juice?
Aug
16
comment Include CSS with PHP without including wp-load?
You are doubling the server load this way. For every page request, WordPress will be loaded twice. Even after using html cache at server side, WordPress will still be loaded for each CSS request. Bad approach! Instead write the CSS file in the directory as per the conditions and then pick it up as a static resource.
Aug
15
comment Enabling XML-RPC Accross 500 blogs
Answer what Rarst asked for. Basically, the option name stored in options table is enable_xmlrpc so you just have to change that value in the database for all of those blogs. Knowing your server setup, will help us give suggestions.
Aug
15
answered Enabling XML-RPC Accross 500 blogs
Aug
13
comment Data validation
There are 3-4 functions which says, they will encode <> and the only difference mention is that some won't double encode them. My main question is to clarify the differences & their appropriate usage better in terms of consideration of different use cases. In short, examples with explanations :-) I am not sure how we can do it here but we can make some progress for sure.
Aug
13
asked Data validation
Aug
13
comment AJAX wp-mysql running too slow
But still loading WordPress in a php file doesn't justify the 1 minute time to serve that ajax call. I agree it will be slower but not this much :P
Aug
13
comment AJAX wp-mysql running too slow
Try doing it with WordPress AJAX API to figure out if its an issue with your approach or something with WordPress at the moment. Also test it without any plugins, and for once, also check the queries & time taken to generate the page.
Aug
13
comment AJAX wp-mysql running too slow
Are you using WordPress AJAX API?
Aug
12
comment wp_signon( $creds, false ); not working
@Sebin Please post your full code. I thought you are doing it when the blog's activation like is clicked, which is how it should be. Are you doing it even before that activation process, the point where the user just fills in the new blog info?
Aug
11
comment Sell “create a post”, paid account for post creation
After payment, save in usermeta can_post as true and change it to false when the user publish a post and check if can_post is true everytime a user tries to post
Aug
11
answered wp_signon( $creds, false ); not working
Aug
9
comment Limit amount of results returned
You misunderstood me. Think of doing an API call to a third party service only for posts matching a certain criteria. :)
Aug
9
comment Latest Foursquare Checkin function
Some caching will do good :)