Category: wordpress

WordPress tutorial for beginners, WordPress common errors and fixes, WordPress installation and coding

How to limit or disable post revisions in WordPress?

WordPress has autosave feature which creates a post revision for every minute while you edit a post. So, if you take more time to write/edit a post, more post revisions will be created in the database which may slow down your site speed. Website speed is an important factor for Google ranking, optimizing post revisions […]

How to translate WordPress into other language? using [wp-config.php]

language options screenshot in WordPress

English is the default language for WordPress. You can install or translate WordPress in other supported languages. Suppose if you have missed language selection step during installation, you can change the language from English to another language using WP_LANG option on wp-config.php file. Translate WordPress into other language 1. Goto below link to see all available […]

How to remove Genesis footer? [simple steps]

genesis theme footer in wordpress

when you install and activate Genesis theme on wordpress site, you will see below genesis theme credits at the footer. If you want to remove those credits, follow below mentioned simple steps. Note: I installed eleven40 Pro child theme. Removing Genesis Child Theme’s footer Access your site’s FTP server Goto wp-content/themes/ Goto child theme folder (Genesis sample […]

Create direct download link for images in WordPress

convert-image-link-to-direct-download-link photo

You can convert an image link to a direct download link in WordPress. Just click on the image to download it directly to your PC. Below are the steps. Steps to convert an image link to direct download link Open the post where you want to convert the image to direct download link Click on […]

Fix WordPress m=1 redirect issue from Blogger Mobile URL using htaccess

If you have moved your blog from blogger to self hosted wordpress platform, then you likely to see 404 or page not found errors in webmaster tools for URLs ending with ?m=1.These are blogger mobile version URLs. Blogger adds m=1 to all mobile version URLs. After you migrated your site from blogger to wordpress, those blogger […]

Enable Hotlink protection using .htaccess file

What is “Hotlink” or “bandwidth theft”? Hotlink is direct linking of a website’s files (images, videos etc). For example, If someone wants to display your website image on their site, and if they use the image’s URL to display it , then it is called Hot linking. Here, your image is directly linked on other […]

Fix broken images on Google plus

If you are seeing broken images on your shared links on Google plus, Facebook, twitter or any other site where you shared the post link, then read below to fix that. In above case, shared links work. When clicked, they will take you to the correct page on blog or site. When you share the […]

Main domain .htaccess file affects addon domain [SOLVED]

If the rewrite rules in main domain’s .htaccess file are affecting the addon domain, then add below code (at end) in main domain’s .htaccess file. You can find the .htaccess file at public_html/ <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^(www\.)?addondomain\.com Rewriterule .* – [L] </IfModule> Note: Replace addondomain in above code with your addon domain In […]

Simple steps to delete or uninstall WordPress theme

uninstall-delete-wordpress-theme

Below are the simple steps to delete or uninstall wordpress theme. Note: Make sure you have one active theme before deleting unnecessary free themes. Steps to delete or uninstall wordpress theme Login into your WordPress site On left side, click on Appearance -> Themes You will see all the themes installed on your WordPress site Hover […]