Posts Tagged ‘WordPress Plugin’

Simple Way to Optimize Web Image (Better Performance)

Sunday, April 14th, 2013

Optimizing your image in your website is useful to make better performance when is loaded. Here the simple way how to make it. First you have to download the software GIMP. Its the one software I recommended to you because its so light and easy friendly to use.

When you create or modify image with such as photoshop, the result image that you save its not really optimize. So, you have to optimize again with this software. Just open your sphotoshop image and open it by GIMP, when GIMP is opened then save it again. Make it sure the optimize settings in GIMP is settup first (Quality Settings) before you click the “SAVE” button. You will see the image result is optimized and you can upload it to your web server.

For WordPress blog, you can use Smush it plugin to make your image more optimize then before. Just install the plugin and under the plugin settings, find bulk smush it and click the button. All your image will be optimized.

Rating 3.00 out of 5
[?]


Advertisement



Disable link in comment form WordPress

Friday, December 17th, 2010

A couple months ago, I had post about how to disable external link in post content. A this time I will show you how to disable all link in comments form without plugin. You know, too many spammer on the net, most of them fill your comment box with hundred comments and links. Here step by step how to disable link in comment for WordPress blog:

1. Open you functions.php (Theme Functions) file in your theme.
2. Put this code on the top after code <?php

remove_filter('comment_text', 'make_clickable', 9);
add_filter('comment_text', 'wp_filter_nohtml_kses');
add_filter('comment_text_rss', 'wp_filter_nohtml_kses');
add_filter('comment_excerpt', 'wp_filter_nohtml_kses');

3. Save it.

All is done. Now you can test your comment form. Have work!

Rating 4.50 out of 5
[?]


Advertisement