Archive

Posts Tagged ‘Wordpress’

Free: WordPress plugin pembersih URL/Link (Url Cleaner)

June 26th, 2010 Ahlul Faradish 7 comments

Versi saat ini: 1.2
———————-
Changelog:
1.2 Melakukan pengecualian pembersihan link untuk ‘readmore’

Sebenarnya fungsi pembersih URL atau link sudah terdapat pada plugin transpinner sebelumnya.

Namun seorang pemakai transpinner menginginkan lebih :D

Akhirnya saya buatkan plugin satu lagi khusus untuk pembersih URL/link.

Url Cleaner

Url Cleaner

Apakah fungsi dari plugin ini?

Tentu saja sudah bisa terlihat dari judulnya yaitu pembersih link. Jadi semua link pada suatu post akan dihilangkan. Sehingga post anda akan bersih dari link ke situs lain.

Apakah fungsi ini merubah sampai ke dalam database?

Tidak :) plugin ini seperti transpinner dan plugin-plugin filter lainnya, hanya melakukan perubahan atau penyaringan isi post atau artikel sebelum ditampilkan. Adapun database tetap seperti adanya.

Apakah manfaat dari plugin ini?

Menurut saya, plugin ini mungkin hanya dan akan bermanfaat sekali bagi yang melakukan auto posting, seperti mengambil dari situs orang lain atau menjalankan bisnis PTR (Paid To Review).

Karena terkadang ada link-link atau alamat situs di dalam post atau artikel automatis yang tidak kita inginkan, karena mungkin akan berdampak buruk pada rakning atau SEO situs kita dan sebagainya.

Nah, di sini lah fungsi plugin pembersih URL ini.

Apa yang bisa dilakukan plugin ini?

Continue reading “Free: WordPress plugin pembersih URL/Link (Url Cleaner)” »

Show time ago (facebook/twitter like) on wordpress

June 21st, 2010 Ahlul Faradish 2 comments

This function can be used to display time ago that using by facebook or twitter. Here the example:

13 mins ago, 1 month ago, or 1year ago.

You can add this at your template function file :)

<?php
function time_ago($d) {
	$t = strtotime($d);
	return human_time_diff($t, current_time('timestamp')) . " " . __('ago');
}
?>

How to use?

<?php echo time_ago($comment->comment_date); ?>

WordPress 3.0 Stable Version Released

June 18th, 2010 Ahlul Faradish 3 comments

As you know wordpress is a most popular CMS for blogging and other use.

After release non stable version, now wordpress.org release version 3.0.

As wordpress.org said, this have some Highlights Features:

  • WordPress and WordPress MU have merged, allowing the management of multiple sites (called Multisite) from one WordPress installation.
  • New default theme “Twenty Ten” takes full advantage of the current features of WordPress.
  • New custom menu management feature, allows creation of custom menus combining posts, pages, categories, tags, and links for use in theme menus or widgets.
  • Custom header and background APIs.
  • Contextual help text accessed under the Help tab of every screen in the WordPress administration.
  • Ability to set the admin username and password during installation.
  • Bulk updating of themes with an automatic maintenance mode during the process.
  • Support for shortlinks.
  • Improved Custom post types and custom taxonomies including hierarchical (category-style) support. (Try the Custom Post Type UI or GD Custom Posts And Taxonomies Tools plugins to see the possibilities.)
  • A lighter admin color scheme to increase accessibility and put the focus more squarely on your content.

Other features or changes can be found at: http://codex.wordpress.org/Version_3.0

Click here to download Latest Version of WordPress.

You can upgrade your wordpress directly form your dashboard :)

Transpinner, New Solution for WordPress Unique Article

June 2nd, 2010 Ahlul Faradish 3 comments

Who need this plugins?

As you know, today many people that use auto blog to monetize their blog.
So, the content taken from other site. It posible the content is exactly same with the source.
Using this plugin you can avoid that case, so get your unique post with this plugin now :)
Don’t forget, the result is readable by human.

How it works?

This plugin work using google translation. And this plugin will translate your article based on translation path.

Why this can be new solution for wordpress unique article?

Ok, other plugin that I have heard just spin for few languages online, but this plugin will spin translation as much as you want :)

So this feature will make high probability between articles in the world.

Using cache system

Why this important? Because the page speed is important thing for a website :) So we care about it.

This plugin will cache once it run on a post, so this plugin will not disturb your page load :)

What the other features of this plugin?

  • You can ignore a post with put <!–tspin_ex–> tag in the contents.
  • You can set how many translation path/spin.
  • Spin or Ignore post title.
  • Exclude or Include any categories
  • Translation cache
  • Auto update cache on update/save post.
  • Clean translation result.

Ok, need this plugin?

You can purchase only for $30.

The rule

You can use this plugin as much as you want, but dont share with unpaid user :) We need your contribution to survive and build other plugins for you.

WP-Hacks: Fetch Post Via Email and put in any category

January 24th, 2010 Ahlul Faradish 5 comments

TUTORIAL INI BEBAS DI COPY PASTE DAN DIANJURKAN UNTUK DISEBAR LUASKAN DENGAN CATATAN MOHON DISERTAKAN LINK KE SITUS PENULISNYA

Sometime you would like to send the post via email because it easier and simply.

For long time ago, wordpress has support this function. But almost of wordpress user didn’t know about that.

Ok before make some hacks ;) please follow this instruction if you don’t know about post via email settings.

  1. Go to Settings >Writing ([domain]/wp-admin/options-writing.php)
  2. Please see at “Post Via E-Mail” section.
  3. Enter all information needed, such as: your mail server, mail username, password.
    FYI: for google account you can use mail server: ssl://pop.gmail.com, and port 995.
  4. After all mail settings is filled, you can select default category for the fetched post.

Ok, let do some test ;)

Send and email to the email account that you set in post via email settings.

After your mail is sent, please access wp-mail.php. You can find it at: [domain]/wp-mail.php.
If success, you should see some fetching process.

Now, look at your posts :) if success it must saved and listed. But for first post from that mail you have to approve it manually.

NOW LET MAKE SOME HACKS ;)

When you post is successful fetched, the post category is match with default category that you set before.

I think at your mind there is a question: how make the category as you need?

Let’s I answer that question:

Go to your file manager of your hosting, and edit file wp-mail.php (you can find it at main directory of wordpress installation).
If you not have file manager you can use FTP for download and edit that file.

Find the below line:

$post_category = array(get_option('default_email_category'));

And, change it to:

$arr_pt = explode(":",$post_title);
$cat_ID = get_cat_ID($arr_pt[0]);
if($cat_ID) {
$post_category = $cat_ID;
$post_title = $arr_pt[1];
} else {
$post_category = array(get_option('default_email_category'));
}

Yap done ;)

HOW IT WORKS?

Technically, Mail Subject will be as Post Title for fetched post.

Now with this hack, you can use this format for mail subject:

Category Name:This dummy title for fetched post via email

Please see “:” between category name and post title. It use as separator for this case.

Now you can try it ;)

And for last to do, don’t forget to set a cronjob for automation mail fetch.

In many case you can use this command:

GET http://yourdomain.com/wp-mail.php

If you use Windows Hosting I think you can use other wordpress plugin that support for emulate a cronjob.

NEED SUPPORT?

He2, if you still have the problem or found it not works for you, please don’t hesitate to contact me at ceo.ahlul[at]yahoo.com

————–

Now you can post anywhere from your phone (with send mail support) ;)

WordPress Plugin(s): WP Contacts Directory

January 10th, 2010 Ahlul Faradish 87 comments

=== WP Contacts Directory ===
Contributors: Ahlul Faradish Resha
Donate link: http://ahlul.web.id/blog/2009/01/10/contact-directory.html
Tags: contact,info,member,list,directory,csv,import,business directory,business
Requires at least: 2.7
Tested up to: 2.9.2
Stable tag: 3.0.1

This plugin use for manage and display directory(directory page) about informations. Very Easy to use and modify.

== Description ==

This plugin use for manage and display simple directory about informations.
You can use this plugin to list your member, your affiliates, and other informations that you want to display or manage with your blog.

== Installation ==

Heuheu, just activate this on your dashboard and it will work for you.

Attention: If you use older version than 3.0, this will upgrade your contacts. If you still want to use single category for each contact I suggest don’t upgrade.

== Changelog ==

* 3.0.1 Add message box to tell how to upgrade in WP Contact Manager Page (Contact List)
* 3.0 Add many features, support for multiple categories, and you can modify the contact template too
* 2.2.5 Fix missing separator
* 2.2.4 Add support for Office 2003 style.
* 2.2.3 Fix some URL on directory page(post).
* 2.2 Add some functions; include alphabetic sort
* 2.0 Add some functions: available for add or edit contacts from backend, add CSV importer
* 1.5 Fix some minor error
* 1.0 Release date

== Upgrade Notice ==

Attention: If you use older version than 3.0, this will upgrade your contacts. If you still want to use single category for each contact I suggest don’t upgrade.

== Frequently Asked Questions ==

= What i can do with this plugin? =

* With this plugin you can manage your informations directory
* You can add directory about your school alumni, your member contact, etc.

= How to use this plugin on my wordpress? =

Just add tag [contactdir_addform] to show add form in your post.
And add tag [contactdir_directory] to show list of directory in your post.

Download Here: http://downloads.wordpress.org/plugin/wp-contacts-directory.zip

WordPress 2.7.1 SMTP Enabled

May 23rd, 2009 Ahlul Faradish 5 comments

TUTORIAL INI BEBAS DI COPY PASTE DAN DIANJURKAN UNTUK DISEBAR LUASKAN DENGAN CATATAN MOHON DISERTAKAN LINK KE SITUS PENULISNYA

Why use SMTP

Sometime if you use your own domain or php script mail provider like Yahoo & Gmail will send your mail to their bulk or spam folder. With this you can solve that problem ;)

Hot Feature

  • Complete SMTP settings.
  • You can use secure option or no (SSL & TLS)

Screen Shoot

screenhunter_02-may-23-1507

I added that features under “Miscellaneous” Settings

screenhunter_01-may-23-1502

You can find SMTP Settings section under Uploading Files section

English

When your server is not support for PHPMail you can solve with this wordpress version.

I’ve rewrite wordpress code and now i release WordPress 2.7.1  SMTP Enabled.

Yap, there is some plugins that you can use to enabled SMTP on your WordPress. But if you use plugin it will consume more resources of server.

Oh this package i not add some functions, but i just used functions that already added on current wordpress so i think this not consume more resources if we compare with non SMTP enable.

So if you want to use my package you can download here :) : WordPress-2.7.1-smtp-enabled.zip

If you want to modify your installed WordPress i can help you just for $3, so you do not need to reinstall your wordpress blog.

Support & Donate

If you have bugs or some questions please sent mail to me: ceo.ahlul[at]yahoo.com

I spend my time for this. If you find this plugin is usefull and want make donation for me you can send it to my paypal ;)


Or you can send directly to my paypal account: ahlul_amc@yahoo.co.id

Thanks before for donation.

Bahasa Indonesia

Kadangkala kita menemukan bahwa PHPMail pada server tidak aktif sehingga anda tidak bisa mengirim email dengan wordpress anda, oleh karena itu saya melakukan perubahan pada beberapa fungsi wordpress sehingga saat ini anda dimungkinkan untuk mengaktifkan fitur SMTP pada wordpress anda.

Yap, anda tentu bisa gunakan plugin SMTP untuk wordpress. Tapi plugin berarti menambah pemakaian resources server anda sehingga tentu tidak efisien. Berbeda dengan fitur yang saya aktifkan adalah masih memakai fungsi asli wordpress sehingga tidak ada bedanya terhadap pemakaian memori terhadap yang non SMTP dan yang memakai SMTP.

Jika anda ingin mendownload anda bisa download di sini :) WordPress-2.7.1-smtp-enabled.zip

Atau jika anda ingin mengaktifkan SMTP pada wordpress anda yang telah terinstall anda bisa hubungi saya untuk bantuannya, anda hanya perlu membayar uang jasa pemasangan dan pengubahan Rp. 25.000, sehingga anda tidak perlu melakukan reinstall terhadap wordpress anda.

Dukungan & Donasi

Jika anda menemukan kekurangan atau pertanyaan silahkan email saya di: ceo.ahlul[at]yahoo.com

Jika anda menghargai waktu saya dan menemukan plugin ini bermanfaat silahkan donasi lewat paypal saya  ;)


Atau anda yang di Indonesia bisa mengirim lewat rekening yang ada di halaman:
http://ahlul.web.id/blog/donasi-untuk-saya

Terimakasih untuk donasi anda.

wordpress comment auto responder

April 20th, 2009 Ahlul Faradish 5 comments

WP-Plugin: WordPress Comment Auto Responder

April 19th, 2009 Ahlul Faradish 202 comments

TUTORIAL INI BEBAS DI COPY PASTE DAN DIANJURKAN UNTUK DISEBAR LUASKAN DENGAN CATATAN MOHON DISERTAKAN LINK KE SITUS PENULISNYA

Make your visitor back to your blog again ;)

Now you can install this plugin directly from your dashboard: Plugins -> Add New, and search for wordpress comment auto responder.

Latest version: 3.0

Changelog:
3.0.3 - Add function to support Custom Content and Plugin Dir of WordPress.(http://codex.wordpress.org/Determining_Plugin_and_Content_Directories)
3.0.2 - Add Email Comment Author for usable tag
3.0 - Change replied comment option, Add some new features
2.0 - Remove class mail & class smtp and now using wpmail function so i hope this will solve character error issue
1.6.1 - Little change on functions.php
1.6 - Added custom sender option
1.5 - Added some function to support PHP 4.x
1.4 - Add more or equal operator for date sort of comment
1.3 - Bug fix: Last ID become empty when process last comment
1.2 - Bug fix: script do not update last id if comment email author is empty
1.1 - Change from self table to wordpress option database

Language: EnglishBahasa Indonesia

This plugin will send a automatic mail message when you visitor leave a comment on your wordpress blog.

Other feature of this plugin is when you reply your visitor comment from your dashboard this plugin will make automatic message and will tell to your visitor that their comment has replied.

How To Install

Heuheu, just activate this on your dashboard and it will work for you.

MAKE SURE YOU HAVE THIS DECLARED AT YOUR FOOTER:

<?php wp_footer(); ?>

How To Configure

Go to you Settings section on your dashboar, look for “WP Comment Auto Responder”.

Then click it and you will see a page like this:

comment-auto-responder

What you can do with this plugin options?

  • You can make your own message for auto responder
  • You can use special tags on you message
  • You can make mail signature for your message
  • And More

This is not final, i’ll improve this plugin and make more feature for it.

Support & Donate

If you have bugs or some questions please sent mail to me: ceo.ahlul[at]yahoo.com

I spend my time for this. If you find this plugin is usefull and want make donation for me you can send it to my paypal ;)


Or you can send directly to my paypal account: ahlul_amc@yahoo.co.id

Thanks before for donation.

Where to download

You can download this plugin here: Latest Wp Comment Auto Responder

Bahasa Indonesia

Plugin ini akan mengirim pesan otomatis ke email pengunjung situs anda yang meninggalkan komentar.

Fitur lainnya adalah dengan plugin ini adalah plugin ini juga bisa mengirim email pemberitahuan otomatis kepada pengunjung anda bahwa komentar mereka sudah dibalas.

Bagaimana cara menginstallnya?

Heuheu, hanya aktifkan lewat dashboard dan ini akan bekerja secara otomatis untuk anda.

Bagaimana cara mengkonfigurasinya?

Masuklah ke dashboard wordpress anda dan perhatikan bagian Settings, carilah  “WP Comment Auto Responder”.

Kliklah dan anda akan melihat gambar berikut:

comment-auto-responder

Apa yang bisa anda lakukan dengan opsi plugin ini?

  • Anda bisa menyusun pesan auto responder anda
  • Anda bisa gunakan kata-kata kunci pada pesan anda
  • Anda bisa membubuhkan tanda tangan pada pesan anda
  • Dan banyak lagi

Ini belum final, saya masih akan meningkatkan fitur-fiturnya.

Dukungan & Donasi

Jika anda menemukan kekurangan atau pertanyaan silahkan email saya di: ceo.ahlul[at]yahoo.com

Jika anda menghargai waktu saya dan menemukan plugin ini bermanfaat silahkan donasi lewat paypal saya  ;)


Atau anda yang di Indonesia bisa mengirim lewat rekening yang ada di halaman:
http://ahlul.web.id/blog/donasi-untuk-saya

Terimakasih untuk donasi anda.

Dimana harus di download?

Anda bisa download pada link berikut: Latest Wp Comment Auto Responder

3.0 – Change replied comment option, Add some new features

[WordPress Plugin] Tampilkan data hasil pemilu pada situs wordpress anda

April 12th, 2009 Ahlul Faradish 21 comments

TUTORIAL INI BEBAS DI COPY PASTE DAN DIANJURKAN UNTUK DISEBAR LUASKAN DENGAN CATATAN MOHON DISERTAKAN LINK KE SITUS PENULISNYA

Versi yang portable(bisa dipasang di mana saja: blogspot, dll) sudah tersedia,silahkan kunjungi http://ahlul.web.id/blog/2009/04/13/hot-tampilkan-tabulasi-nasional-paling-update-di-situs-atau-blog-anda.html

Bagi yang mendownload sebelum jam 8 pagi tanggal 13 April mohon di redownload dan gantikan yang lama dengan yang baru (versi 1.1)

Hi2 nih iseng bikin skrip.

Dengan plugin ini anda bisa menampilkan hasil pemilu Indonesia 2009 secara langsung dan realtime yang berarti sistem ini mengambil langsung setiap perubahan data yang ada di KPU.

Selain itu juga dilengkapi dengan data 10 partai terbesar atau yang terbanyak memperoleh suara.

Untuk pemasangan skrip ini sangat mudah.

Anda tinggal download, dan extract filenya di dalam folder plugin anda.

Selanjutnya tinggal diaktifkan.

Untuk menampilkan anda bisa menuliskan kode berikut (saya anjurkan di header atau footer):

<? kode_pemilu(); ?>

Untuk download silahkan di alamat berikut: Wp-Pemilu 1.1

Hasilnya bisa anda lihat di situs ini snediri ;)

Bagi yang ingin memasangkan di non wordpress mungkin bisa dengan sistem frame. Pada framenya bisa ditujukan ke alamat: http://serviceforweb.com/pemilu/

Ada kendala? Silahkan berkomentar.

Other Result

  • Domosquare.com - Hosting & Domain Provider » Hosting IIX Indonesia ...
    domosquare.com Solusi web hosting dan domain anda, harga hosting murah dan masuk akal, selalu inovatif dan terdepan, cocok untuk pribadi ataupun perusahaan.
  • Selamat Datang di Blog Domosquare ;) « Domosquare.com - Hosting ...
    7 Mei 2010 ... Tampilan DomoSquare dibuat di Windows 7 dengan layar wide screen, sehingga lebih dianjurkan untuk dilihat dengan layar wide screen :p biar ...
  • Watch | A Blog Written By Ahlul Faradish Resha S.Si
    domosquare.com Solusi web hosting dan domain anda, harga hosting murah dan masuk ... Star International Contemporary, Domo, Domo Square Glass Dining Table, ...
  • domosquare | A Blog Written By Ahlul Faradish Resha S.Si
    domosquare.com Solusi web hosting dan domain anda, harga hosting murah dan masuk akal, selalu inovatif dan terdepan, cocok untuk pribadi ataupun perusahaan. ...
  • Home Gallery Furniture for Star International Dining Room, Domo ...
    Dark Walnut. $1850.00. $1370.00. 3028.DW. Domo Square Glass Dining Table. Domo Square Glass Dining Table. Dark Walnut. $1512.00. $1120.00 ...
  • DOMO Music Group
    New Age, Jazz, and World music label. Home of Kitaro, Yoshida Brothers, Dave Eggar, Agatsuma, and Chuck Barris. Artist bios, news, online ordering.
  • KITARO STORE : DOMO STORE
    domo-square-logo.jpg. DOMO STORE. Unique Apparel & Gear. Browse Products. Browse Designs. » Yoshida Brothers Store. » KITARO STORE. » DOMO STORE ...
  • Domo Square - Pengecek Domain
    Pengecek Domain. Member Square > Pengecek Domain · Pencarian Domain Simple | Pencarian Domain Massal | Massal Domain Transfer ...