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’ );
Change WordPress “from” email address and name
This is short an sweet. By default, WordPress email notification address looks like [email protected]. If you want to use the site’s real email address and name for system notification to you or user add the code below to your theme’s functions.php file. The fist 3 lines will modify the default email address and the next […]
Add a login/logout link to a WordPress navigation menu
I was looking for a way to add a login/logout link to a WordPress menu a few months back and I was not able to find it a good solution anywhere, so here it is. I also summited an idea to WordPress to see if they can add the option on the admin menu area […]
Pinterest-like gallery tutorial
After two post demos Pinterest-like galleries demo 1 and Pinterest-like galleries demo 2 infinite scroll and a lot of work, the Pinterest-like gallery tutorial is here. Just like any good food recipe I will start by listing the items needed; this will also allow me to give credit to the scripts used in the tutorial. […]