Skip to content

Uplift Your Online Presence with These Free Abstract Banners

    Digital banners are like your online presentation cards. No matter if it’s an ad, a website banner, or a social media header, it’s the first thing people see about you. Welcome your fans with the perfect abstract banner that will let them know what you are all about. About Abstract Banner Set Choose the right color combination to match your brand and add your own information. All files in this “free for personal use” bundle from Freepik come in both… Read More »Uplift Your Online Presence with These Free Abstract Banners

    Rename WordPress roles

      Have you ever wanted to change the default role names (Administrator, Editor, Author, Contributor, Subscriber) within WordPress? Here is a super useful snippet to do so. Simply paste this code into your function.php file. Edit lines 5 and 6 at your convenience. function wps_change_role_name() { global $wp_roles; if ( ! isset( $wp_roles ) ) $wp_roles = new WP_Roles(); $wp_roles->roles[‘contributor’][‘name’] = ‘Owner’; $wp_roles->role_names[‘contributor’] = ‘Owner’; } add_action(‘init’, ‘wps_change_role_name’);

      How to remove login shake effect when error occurs

        If you don’t like the “shake” effect which occurs each time a login error occurs? Here is a super easy snippet to remove it for good. Simply paste the following code into your functions.php file: function wps_login_error() { remove_action(‘login_head’, ‘wp_shake_js’, 12); } add_action(‘login_head’, ‘wps_login_error’);

        WordPress tip: move all JavaScript files to the footer automatically

          In order to improve the loading time of your WordPress blog, it is recommended that you move JavaScript files to the bottom of your HTML documents. Unfortunately, it isn’t always as easy as it seems, especially when using some plugins who inject code in the header. Here’s a simple solution to automatically move all JavaScript files to the bottom. First, open your functions.php file and paste the following code in it: /** * Filter HTML code and leave allowed/disallowed tags… Read More »WordPress tip: move all JavaScript files to the footer automatically

          44 Free SEO Tools to Cover All SEO Needs In 2018

            When it comes to SEO, one must need to use a variety of Tools to speed up the data collection, research and processing works. There are thousands of tools out there. Some very good tools are paid and highly Expensive. So if you are a newbie or a Freelancer, they might be out of your Budget. But there are again some few Good and FREE Tools, to get you Sorted. 1. Google PageSpeed Insights Enter a URL, and this tool… Read More »44 Free SEO Tools to Cover All SEO Needs In 2018

            how to start a blog

            How to Start a Blog in Under 30 Minutes

              Want to work at home and make money from your computer as a blogger? Or just want to start a blog about your life or interests for fun? Starting a blog can seem like an overwhelming idea when you don’t know where to start but don’t worry it’s very easy to set up a new blog in under half an hour, even if you don’t have any technical knowledge or experience in blogging or making websites. 1. Choose a Blogging… Read More »How to Start a Blog in Under 30 Minutes

              Download older plugin versions from wordpress.org

                There’s a simple way to get hold of previous versions of your WordPress plugins, for example if a current version breaks your setup. On the right side of the plugin’s page there a link called “Advanced View”, which should better be called “Version View”: Very, very (very) far at the end of the page there a dropdown box where you can select the desired version and click “Download” the get the desired version: