Download your chosen Theme
Extract the folder of your Theme
Copy your Theme folder into the /wp-content/themes/ folder of your local WordPress installation
Activate your Theme within your WordPress Admin Panel under Appearance->Themes, there should be an Activate link under the WordPress Theme
How to put a site offline in WordPress
Install the Site Offline or Coming Soon plugin found by visiting this link Use this plugin to enable/disable site offline mode. When Site offline Mode is enabled regular visitors of your site will see a page(you can edit that page by going to settings->Site Offline Mode) and you as a admin can make and test safe changes to your site. Very helpful for those developers who need coming soon...
Getting Error Page not Found when clicking on a link after changing Permalinks in WordPress
We recently installed the WordPress Ecommerce plugin and created a page that links to a specific product, what we did we changed the Permalink of this specific product and then when viewing the product we got an error that the Page can’t be found or more specific we got the message “This is somewhat embarrassing, isn’t it? It seems we can’t find what you’re looking for. Perhaps...
How to remove the top bar in WordPress for logged-in users
Edit the functions.php file in within your theme and add the following line to it
add_filter( 'show_admin_bar', '__return_false' );
This will remove the top bar when a user is logged-in.
How to display different menus for logged-in and logged-out users in WordPress
Add the following snippet of code in your theme to the location where you would like the menu’s to be displayed. <?php if ( is_user_logged_in() ): wp_nav_menu( array( 'menu' => 'Loggedin' ) ); else: wp_nav_menu( array( 'theme_location' => 'primary' ) ); endif; ?> Basically, what the code above does, it checks if the user is logged-in and then displays the LoggedIn menu, you may...