Posts

Showing posts with the label Wordpress

[SOLVED] Spamming Wordpress Plugin jaqqscigs@gmail.com

Saya cukup kesal sekali saat mendapati bahwa web saya disuspend oleh hosting saya karena spamming pada salah satu web saya. Berikut capture header spamming yang dikirimkan oleh hosting saya: Total Email : 261 contoh header email : Received: from ayam.n.masterweb.com ([49.50.80.10] helo= xxxxxxx .masterweb.net) by mxserver3.masterweb.com with esmtps (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.82) (envelope-from < xxxxxxx @ xxxxxxx .masterweb.net>) id 1W6E5J-0003az-Nv for jaqqscigs@gmail.com; Thu, 23 Jan 2014 13:48:28 +0700 Received: from xxxxxxx by  xxxxxxx .masterweb.net with local (Exim 4.82) (envelope-from < xxxxxxx @ xxxxxxx .masterweb.net>) id 1W6E57-0000Jy-RS for jaqqscigs@gmail.com; Thu, 23 Jan 2014 06:48:06 +0000 To: jaqqscigs@gmail.com Subject: Wordpress Plugin Date: Thu, 23 Jan 2014 06:48:05 +0000 From: WordPress xxxxxxx .co.id> xxxxxxx X-Priority: 3 X-Mailer: PHPMailer 5.2.4 (http://code.google.com/a/apache-extras.org/p/phpmailer/) MIME-V...

Merubah Logo dan Background Login Wordpress.org

Image
Seperti tertulis pada judul, berikut akan saya jelaskan cara merubah logo dan background pada halaman login wordpress.org Creating your own custom wordpress login page is a lot easier than you may think. First you will need to open the functions.php file for the theme you are going to be using. This should be located at ~/public_html/wp-content/themes/ yourtheme /functions.php Replace  yourtheme  with the theme you will be using. Example Preview You will need to add the following lines of code to the bottom of your functions.php file: Full Code add_action ( "login_head" , "login_mod" ) ; function login_mod ( ) { echo " " ; } add_filter ( 'login_headerurl' , create_function ( false , "return 'http://smyl.es';" ) ) ; Breakdown Hook the Function First we will use add_action ( WordPress Codex ) to create the hook for  login_head  to our function we named  login_mod . add_action (...

How to Change the Number of Related Products in WooCommerce Themes

How to Change the Number of Related Products in WooCommerce Themes atau Merubah jumlah related produk pada Themes WooCommerce Bagi pengguna themes WooCommerce khususnya yang responsive pasti sering mengeluhkan loading page yang cukup lama. Hal itu biasanya terjadi pada halaman single product dimana as default terdapat sampai dengan 20 related product yang ada khususnya bagi website yang memiliki jumlah produk yang banyak. Berikut ini saya sadurkan artikel yang menjelaskan cara merubah jumlah related produk pada Themes WooCommerce, silakan dibaca dengan baik. The related products number is determined by a function in your Theme Functions (functions.php), which you can edit under Appearance → Editor. This is considered a modification, so do it at your own risk! Make a backup of your existing file so you can replace it if something goes wrong and you need to start over.  Modified files WILL probably be replaced by a theme update at some point so keep note of your changes for ...

Cara edit HTML pada file template Wordpress

Image
Untuk mengedit file-file dari dalam dashboard langsung tanpa harus membuka file di localhost dan meng-editnya dengan editor seperti Dreamweaver , di dalam menu Presentation >> Theme Editor ada pilihan itu. Tinggal memilih file mana yang akan di edit, nama-nama file bawaan theme-nya ada tercantum disana, misalnya di dalam sidebar.php kita ingin menambahkan suatu kode atau link atau gambar logo, kita klik pilihan sidebar.php dan masukkan kode tersebut di posisi yang diinginkan kemudian klik tombol “Update File” maka setelah itu perubahan tampilan weblog sudah bisa dilihat langsung….   ow ow, bagaimana kalau ternyata tombol “update file” nggak tampak ? Untuk hal ini, kembalilah ke cpanel server hostingnya, set permission CHMOD menjadi 666 untuk file-file yang sekiranya bakal di edit. Jika CHMOD sudah diubah maka di bilik Presentation >> Theme Editor tadi akan muncul tombol “Update File“. Banyak yang tanya, kenapa nggak bisa edit themes langsung dari Admin Panel, ...