Table cellpadding not working in Wordpress (solved)

3:29:00 PM |
When you try to modify a table in Wordpress, it doesn't seems working at all. It's because you cannot override the theme configuration by using simple formulas such as cellpadding or cellspacing.



What you need to do is to try to change in very single cell in the table. For example:

<table><tbody>
<tr>
<td style="padding: 10px;"></td>
</tr>
</tbody></table>

Have fun!
Read more…

How to hide featured image in Single Post in Wordpress

11:41:00 AM |
After hide featured image in Wordpress (from startGBC.com)
I don't know what happened to the recently Wordpress update, but I really hate the way that my featured image being added to inside the post. So what I do is simply to remove featured image on posts.

Step 1: open your style.css or custom css in your theme

Step 2: insert this miracle line:
.single .featured-image { display: none; }
Have fun!
Read more…

How to Remove Hostiger Ads on 000webhost

5:18:00 PM |
If you created a free account at 000webhost, you may get Hostinger pop up Ads when accessing your website. Luckily I searched and figured out how to remove Hostiger Ads on 000webhost. Here is how you do it. 

Step 1: go to this website: members.000webhost.com/analytics.php

Step 2: type your domain name and password -> Disable Code -> Submit


Congratulation! There will be no pop up ads on your website.

Or just move to Hostgator as Hosting Service with real customer support :)

Read more…

How to Back Up and Restore Your WordPress Website

3:47:00 PM |
After having your WordPress installed on your hosting. The first thing you should do is to backup your website. There are many methods that can help you to backup your files and database easily. However, in this post, I'll show you how to use BackupWordPress plugin to backup your WordPress website:



I. How to Backup Your WordPress Website

Step 1: Go to your Plugin tab and search for BackupWordPress plugin then install and active it.

Step 2: Go to Tools -> Backups


Step 3: Schedule your backup


After finishing backup your website, there's an email that will alert you about this. You can download the backup to your computer if you want.

II. How to Restore Your WordPress Website

Step 1: backup your files

The backup site files consist of three folders called wp-admin, wp-content and wp-includes plus a number of php files and a .htaccess file. You will need to upload the site files to your site and overwrite the existing files. This can be done via FTP using the file manager provided by your hosting company panel or via an FTP or SFTP client (such as Filezilla for PCs or Transmit for Mac). Make sure you choose to replace the existing files with the new ones. If you are restoring your site after a hack or virus attack it is better to delete all the site files prior to uploading the new files in case additional files have been added.

Step 2: backup your database. This should automatically overwrite the old tables. There are a number of different ways that this can be done:

  • Using a tool such as phpMyAdmin. This and similar tools are usually available via your hosting company panel.
  • Using a desktop tool.
  • MySQL commands via the command line prompt.
  • For more information see WordPress codex article on restoring your database from backup.
Read more…

Fixing Mod_rewrite and .htaccess on GoDaddy Hosting

7:22:00 AM |
For those who are struggling with Mod_rewrite on GoDaddy hosting. There are many problems with this one. I want to use url redirect function by editing the .htaccess file. It works only the first time, however after that the .htaccess file changes back to the original without any changes. 

After searching and digging with Mod_rewrite and .htaccess file. I finally come to a solution:


I added the following line:

Options +FollowSymlinks -Multiviews

And the redirect line.

Notes: If there's no change with url redirect. You can edit the permission of the .htaccess file Read and Execute only.

Read more…

How to change your Favicon on Wordpress

7:21:00 PM |
If you want to change your default favicon, this is the right place. In this post, I'll show you how to change / add your favicon on your WordPress website. 

A favicon is typically a graphic 16 x 16 pixels square and is saved as favicon.ico in the root directory of your server. You can use a favicon with any WordPress blog on a web server that allows access to the root directories.

Step 1: Go to your theme editor and select header or header.php


Step 2: Search for the line of code that contains favicon. Overwrite it, if it exists, or add the following code below the <head> HTML tag then save it.

<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" />

Step 3: upload your favicon.ico to your WordPress folder using either file manager or ftp client. Then check again by entering http://yourwebsitename.com/favicon.ico

Step 4: Refresh your blog and the miracle will happen


Note: delete your browser's cache if you see no change.
Read more…

How to Install Disqus on WordPress

10:33:00 PM |
Disqus is a blog comment hosting service for websites and online communities that uses a networked platform. I will show you how to install Disqus on WordPress easily. 

Step 1. Set up your account on Disqus website. 


Step 2: install Disqus Comment System plugin on WordPress.




Step 3: Refresh your website and start commenting.


Read more…

How to Link an AdSense account to an Analytics account

10:07:00 PM |
In this post, I'll show you how to link an AdSense account to an Analytics account by following simple steps. 

Step 1: sign in your Google AdSense account > Setting  > Access and authorization


Step 2: Sign in your Google Analytics account. If you don't have, create one.


Step 3: Copy tracking code to your site


Step 4: Link your accounts



Step 5: Check your AdSense account and congratulation!


Read more…

Fixed: PHP Warning - POST Content Length exceeds the limit

9:16:00 PM |
When upload a theme to my WordPress hosting, I get this error: "PHP Warning: POST Content-Length of xxx bytes exceeds the limit of 8388608 bytes in Unknown on line 0". This is because you exceeded the limit of uploading files. 


In order to solve this problem, you have to edit the php.ini file in your hosting.

You have find post_max_size and upload_max_filesize, then change the default number to 30M or what ever you want.



After changing your file, restart your web server (for local hosting) or try to upload your file again.
Read more…

How to Create a Home Tab on Wordpress

2:07:00 PM |
In this post, I will show you how to create a Home tab in Wordpress. All that you need to do is follow some simple steps:

Step 1: Go to Appearance -> Menus


Step 2: Create a Link to your main page


Step 3: Refresh your page


Read more…

How To Add Facebook Like Box To Blogger

12:55:00 PM |
This tutorial will quickly walk you through an easy step to add Facebook Like box to blogger. Facebook Like Box on your blog will increase the exposure of your fanpage to your visittors. It’s a great way have more readers to your blog. It all require just one click from your visitors and the maggic done. All your posts that enters the page would be visible to your readers. It will appear in their Facebook timeline.

Read more…

How to Install PHP - IMAP (XAMPP)

9:27:00 AM |
When creating a marketing campaign in SugarCRM, I got a problem with IMAP - PHP on my web server: "Inbound Email cannot function without the IMAP c-client libraries enabled/compiled". All that I need to do is to open php.ini file and enable IMAP.

Read more…

How to Change the ‘Root’ Password for MySQL in XAMPP

10:23:00 PM |
After setting your XAMPP on your machine, you may want to set your MySQL password for security. Let's type http://localhost/security on your machine.


Read more…

How to Install Magento on Localhost XAMPP (Windows)

9:58:00 AM |
This is a request from my Q&A. I thought that install Magento together with XAMPP on PC will cost a ton of time and effort, but it goes the opposite. It's very easy to install both of them. I installed XAMPP 1.8.2 and Magento 1.7.0.2 on Windows XP. Actually, with the help of Bitnami, the process of installation becomes so easy than ever. Besides Magento Module, you can install Wordpress, Joomla, Moodle or Cloud on your XAMPP machine.

Read more…

Help Desk Request Form with Images (JotForm + Dropbox)

10:32:00 AM |
It`s very easy and convenient when using  Google Form to create an IT Request Form. However, the only problem is the client cannot upload and files through Google Form. It's time to find an alternative solution. Although, there are many good services that provide with charges, they are not my type. After searching and digging, I finally found one that possibly works. It's the combination between JotFrom and Dropbox, so files will be stored in Dropbox account. This one can be used in many cases such as: volunteer form, job application form, survey form and even purchasing with Paypal.

Limits: 100 submissions / month
Read more…

How To Delete Image Files in Media Manager in Joomla! 2.5

10:42:00 PM |
I found that deleting just a few files in Media Manager is very easy; however, it is very struggling to remove a numerous of files because people have to click on every single file. It's a waste of time if keep doing in that way. I think FileZilla may help to solve this problem by managing files through FTP protocol. All that people need to do is to establish a FTP connection to the website hosting. After that, all files in the website can be managed easily and seamlessly. 

Have fun!
Read more…

How to Send a Mass Email to All Users in Joomla

1:09:00 AM |
Sometimes you want to send a message via email to all of your users. Sometimes you want to send that message only to a group of users or only to those having access to the back-end. Sending emails is always a bit delicate. Nobody wants to be a SPAMMER and nobody wants to receive SPAM, so be careful!

Read more…

How to Remove “Powered by Joomla!” Footer (Beez2)

2:51:00 AM |
I'll not feel guilty to remove "Powered by Joomla!" in the footer position by another slogan, although it helps to promote Joomla to the internet community. There are many ways to help to build a stronger Joomla Community as it's already famous in the technology world.

Read more…

How To Remove Font Size in Joomla! 2.5

8:35:00 PM |
Default templates such as Beez5 or Beez20 have "font size" function on the top of the page. Indeed nobody want it still occupy that position. This guide will show you how to re move change font size function in Joomla.


Read more…

How To Change Menu Position in Joomla! 2.5

12:58:00 PM |
Sample menu position is very boring not so attractive. It's better if you can change menu position to another place such as near the hear of some kinds like that to make it look great. 


Read more…

Make a Donation