Badblog

welcome to our blog

We are Learncodz.


Posts

Comments

The Team

Blog Codz Author

Connect With Us

Join To Connect With Us

Portfolio

  • Magento is a very powerful and thus slightly difficult to tame CMS. It is built on the mighty Zend framework, and it often becomes a difficult task to create or edit Magento templates. Here in this article, I’ll try to compile a brief list of useful Magento template development functions, which are used frequently during theme development. We have to cover a lot in this article, so without further ado, I’ll start explaining the functions.

    One distinguishing characteristic of Magento is its layout feature. This is an added layer which is not present in most other CMSs. Magento layouts are defined through XML tags. As a best practice, custom XML code is usually added in the local.xml file present in the layout folder, as it is the file which is loaded at the very last, and functions written in it override all other functions.

    Using XML code, we can add different CSS and JS files in Magento blocks. One benefit of using this approach is that we can ensure that CSS and JS files are only loaded in layouts which need them. This way we can avoid unnecessary loading of CSS and JS files, and thus reduce page load time.

    We can use the following code to add a CSS file in any layout block.

    Here the reference name contains the name of the block where we’ll add that CSS/JS file. In this example we’re adding a CSS file, so the type parameter was skin_css, but if we needed to add a JS file, the type parameter would change to skin_js. The <params /> tag is intentionally left empty here.

    Using the code below you can unset a child of one parent block and assign that child block to another parent block. For instance you can unset the poll block (child block) from the sidebar (old parent block) and assign that poll block to any new parent block, like the footer.

    If you only need to remove a block, you can use just the first part of the above code. Similarly, if you only need to assign a new block to already existing block, just use the second part of the code.

    CMS blocks are particularly handy in template creation, because they give a non‑technical user the power to easily add content in this block from the admin panel. CMS blocks can be inserted in any layout block using the code below.

    Another important function which is quite frequently used in XML files is assigning templates to different layout blocks. You can do that easily by using the code template below.

    If you already have some template assigned and want to change it, you can use this code:

    Although XML files are an important part of any Magento template that defines template layouts, PHP files are the real building blocks which do the actual task of filling up those layout blocks with useful content.

    These are the functions which are used throughout the template pages.

    We can use two different approaches to generate many of these URLs. One is by using getURLs (like getBaseUrl, getSkinUrl, etc.), and the other is by using a helper/model class. To keep things simple here, we’ll try to use the getURL approach in most cases. For example, to get the store URL you can use this simple function:

    Similarly, we can generate the URL of the current page like this:

    In the same fashion, we can dynamically generate the URL of any specific page using the code below:

    The following two approaches can be used to access any file in the skin directory. As most CSS, JS, and image files reside in the skin directory, references to this location are made hundreds of times in every template.

    If you intend to fetch any resource from skin directory through secure access, you can just pass an additional parameter of array('_secure'=>true) to accomplish that.

    Using the getBaseURL() function we can also access several other directory URLs. Here are some examples:

    While creating/editing templates for Magento, quite frequently we have to insert static text in different places. It could be an instruction for users, some button text, or anything else. To ensure that it is ready for translation into other languages, I advise you to put the content like this:

    Product and Category pages are the most important part of any eCommerce CMS. While creating Magento templates, you’ll be working on these pages most of the time. Here I’ve listed some frequently used functions for these pages, which will facilitate you in your development endeavors.

    When you are on a Category page, you can use this function to load the current category.

    You can also use this function to serve the same function:

    Sometimes you need to reference a category through its ID number. This function will come in handy in instances like that:

    As with categories, you can also access a product through its ID, using the function below:

    In Magento, products have another unique identifier other than ID, and that is SKU. You can also reference products via their SKU using this function:

    You can access the product images with customized parameters (size, style, etc.) using this function. Please note that this function will only work in a product/view/media.phtml file.

    The Cart and Checkout pages are also very important parts of an eCommerce website. The functions related to them will not only help you in creating these pages, but also assist you in showing cart details in the sidebar, footer, or header.

    Using the function below, you can use the count of total items in the cart.

    You can loop through the items recently added to the cart using the code below:

    Here I’ve only shown the PHP code. You can insert the HTML in it as per your style requirements.

    You can also show the subtotal of the items added in the cart by using this function:

    Lastly, you can use these two functions to generate dynamic links to the checkout and cart pages respectively:

    CMS Pages are the pages of the store where user-created content is published. Some examples of such pages are the About Us page, the Privacy Policy page, and the Terms & Conditions page. Though these pages usually serve as a place to put user-created static content, many times you have to enter dynamic content in them, for example a dynamically generated link to the store URL or the skin files URL. Below we’ll discuss how to handle such scenarios.

    Please note that the PHP functions explained above do not work in the CMS pages content area.

    Just as we use Mage::getBaseUrl(); in the PHP template files to access the store URL, we can use this function in CMS pages to access the homepage URL:

    Similarly, the following function is the alternative to the $this->getSkinUrl('images/imagename.jpg'); function to be used in a CMS page:

    Likewise, this function is similar to the $this->getUrl('mypage.html'); function, to access a specific page.

    The media files can also be easily accessed from CMS pages, using the function given below:

    You can also call a Magento static block from within a CMS page content area, using this function:

    Caching is also an important part of Magento, like any other CMS. The model controlling the caching subsystem in Magento is Mage_Core_Model_Cache. To access the cache, we use it through an already instantiated object accessible at Mage::app()->getCache(). Here I’ll enlist the cache functions used to save, load, and clear cache objects.

    To load a cache object, we use the getCache() function:

    After cache object loading, we use the following function to save an item in it.

    An example of such saving could be:

    In the above example, we save the string Save this string into cache. In order to access that in future, we give it a key (string_key), then we give it a tag (string_tag), and lastly, we give it lifetime of 1 hour (60*60 seconds).

    Once we are done saving the value in cache, we can now retrieve it by using the load(); function and passing on the string_key as a parameter:

    Similarly, we can remove that entry saved in cache by using the remove(); function, and passing on the string_key as a parameter:

    You may be wondering by now, of what use is the array we used for tagging. The purpose of such tagging is to perform a function on mass scale, by referring to all the cache entries which have a particular tag assigned to them. For instance, if we use the following code, it’ll delete all the entries in the cache that have the string_tag array assigned to them.

    Since we’ve explained cache functions, I guess mentioning sessions becomes mandatory. In Magento, session variables can be as easily saved, loaded and removed as cache variables. I’ll try to explain that with two examples.

    Now we have saved into cache $msgOne as ValueOne and $msgTwo as ValueTwo. In order to retrieve these two, we’ll use these functions:

    Here I have deliberately saved and loaded two variables into session, so that you can understand how the set, get, and unset prefixes work.

    Just like saving and loading, the removal process is fairly similar for session variables:

    Lastly, you can use this handy function to check whether a customer is logged in or not:

    Well, as I said earlier, Magento is a huge CMS, and its functions cannot be piled up in a single post. But I’ve tried my best to compile a list of the most frequently used functions, and I’ve also tried to briefly explain how they work and what parameters they expect. A careful analysis of these functions will also give you some understanding of how Magento functions work. As a parting thought, I would encourage you to explore the XML and PHTML files of the Magento base theme, to learn more about Magento functions.


    The post Frequently Used Functions in Magento Development appeared first on Codzcook.

  • Google Analytics has become the most used analytics solution worldwide for WordPress websites. Knowing what your audience is looking at, what their interests are and how many visitors you receive is important enough to include Google Analytics with your WordPress website.

    Many modern free and premium themes include an option for adding your Analytics code so it will be placed automatically in the header or footer of your WordPress website. Although this is very important, you still want to see what is happening on your website and therefore you will need a plugin to make that happen. These are 5 of the best and free Google Analytics plugins available in the WordPress.org catalog.

    Google Analyticator

    The Google Analyticator plugin will add the necessary Javascript code to enable Google Analytics on your WordPress website. Included with this plugin is a widget which shows the Analytics data on the main dashboard. This plugin has been downloaded over 3.3 million times from the WordPress.org catalog and will help you to monitor the Analytics data.

    Thanks to the Google Analyticator plugin there is no need to edit the template codes to begin logging. The plugin adds the Javascript code automatically to your website. There are two widgets included with this plugin: a dashboard widget which will show the Analytics data on the backend and a widget which will show the data on the frontend. Check out the extra features on the plugin website.

    Google Analytics by Yoast

    The Google Analytics plugin by Yoast is by far the most downloaded Analytics plugin with over 6.7 million downloads from the WordPress.org catalog. The plugin has been developed by Joost de Valk who also developed the famous SEO plugin. This plugin will allow you to track your WordPress website easily so you can stay up to date with the latest Google Analytics data.

    The plugin has the simplest setup: just authenticate your Google Analytics, select the website you want to track and you are done. Furthermore there are options to enable demographic and interest reports, allow outbound link and downloads tracking and track internal links.

    Google Analytics Dashboard for WP

    The Google Analytics Dashboard plugin will use a dashboard widget to display detailed analytics info and statistics about number of visits, visitors, bounce rates, organic searches, pages per visit etc directly on your WordPress dashboard. The plugin will insert the latest tracking code in every page on your WordPress website. The plugin has been downloaded over 1.3 million times from the WordPress.org catalog.

    The dashboard widget can show more information which can all be setup in the settings page. You can choose to display the real-time visitors, real-time sources and display the top 24 pages or referrers and searches. There are settings to add statistics in Pie Charts, maps of the world and normal statistics on backend and frontend. Check out all the features on the plugin page.

    BestWebSoft Google Analytics

    The BestWebSoft Google Analytics plugin allows you to retrieve basic stats from Google Analytics and will add the necessary tracking code to your WordPress website. The plugin will establish a connection with Google Analytics which allows you to show basic information in tables or line charts in the settings area in the admin dashboard.

    There are many data you can choose to display amongst them total number of visitors, visits, bounce-rate, average visit duration, total number of page views etc.

    NK Google Analytics

    If you need Google Analytics on your WordPress website and don’t want to add the code yourself, this plugin can help you. NK Google Analytics will add the necessary Javascript code to your websites to enable Google Analytics to start tracking your website.

    The plugin supports Classic, Universal and Remarketing Google Analytics tracking codes and inserts them in the header of footer from your WordPress website. There is no tracking for admin users who are logged-in. Setup of the NK Google Analytics plugin is simple and easy by just adding your Google Analytics ID and click “Save changes”.

    If you like to share anything about the content of this carefully selected Top 5 list, please mention this in our comment section below or join us on Facebook, Google+ or Twitter. We hope to hear from you.

     

    The post 5 of the best free Google Analytics WordPress plugins appeared first on Codzcook.

  • Every now and then WordPress users have to set their website in a maintenance or under construction mode and surely everybody wants to do this in a glamourous and beautiful way. Luckily there are a lot of excellent free WordPress plugins which can take of this. If you are still working on a new WP site, a Coming Soon plugin is also very handy to use to let people know you will soon be online. Let’s take a look at five of the best maintenance and coming soon plugins.

    MaintenanceMaintenance

    Author(s): fruitfulcode

    Current Version: 2.4

    Last Updated: 20/10/2014

    maintenance.2.4.zip

    Maintenance

    This Maintenance plugin is very simple, easy to setup but still very nice to look at. It offers some useful options like logo upload, colors setup, background options and the possibility of a nice looking login screen. The Maintenance plugin is currently in version 2.4 and has been downloaded over 330.000 times and has a rating of 4.4 out of 5 stars.

    Maintenance is a easy to configure and customize coming soon or under construction plugin which can be used by just switching on a button. The plugin allows site administrators to close their website for maintenance, enable “503 Service temporarily unavailable” and setup a temporary page with authorization so site admins can still see the website whilst it is blocked for the rest of the world.

    There is a easy setup where you can customize colors, logo, full background images, background blur, add titles, headline and text and configure colors, fonts, icons etc. There is also a user login with validation which opens in a nice looking sidepanel with or without the option of the Admin bar when logged in. Overall a very nice and easy to setup plugin which also comes in a pro version on Codecanyon with many more features.

    Ultimate Maintenance Mode

    The Ultimate Maintenance mode plugin is a bit different than other plugins because of the way it works. The plugin, which has been downloaded over 220.000 times in the Worpress.org catalog, takes a actual screenshot of the site where it is used on and uses this as a background of the maintenance screen. On top there is a overlay window explaining the site is down for maintenance.

    The plugin allows working on a website in the background whilst visitors see a maintenance page which can be customized by the admin. There is an ability to add custom headline, message and background image as well. Search engines receive a 503 http status so they know the site is down temporarily. There is a Premium version of this plugin with extended options.

    Ultimate Coming Soon Page

    The Ultimate Coming Soon Page plugin can be used for both maintenance and coming soon statuses whilst working on a WordPress website. This plugin developed by SeedProd comes in a pro version and a free version which has been dowloaded over 900.000 times in the WordPress.org catalog. The plugin receives a rating of 4.7 out of 5 stars which is very good.

    The Ultimate Coming Soon Page plugin a simple yet flexible and works well with any WordPress theme. Anyone who is not logged in to the site admin will see the coming soon page while the logged in users can work quietly on the website. There are a lot of benefits using this handy plugin like a completely customizable look including background, colors, images, logo, fonts and also collect Emails with Feedburner. There is also a pro version of this very useful plugin which gives even more flexibility and options to stand out of the crowd.

    underConstruction

    This very simple plugin does what it must do … put your WordPress site in a maintenance mode. The maintenance screen is shown to all people who are not logged in to the admin and it is really useful for site development without much hassle, options, setups etc. Although underConstruction is a very basic and simple plugin, it has been downloaded over 700.000 times from the Worpress.org catalog.

    The underConstruction plugin is very simple to setup simply because there are not so many features. You can activate and deactivate the maintenance mode, setup a HTTP status code like 200 or 503, tweak the display options with or without text and HTTP code and write a Page Title, header Text and Body Text which will be displayed over a black background. Simple and effective plugin.

    WP Maintenance Mode

    The WP Maintenance Mode plugin does what it’s title says, put your WordPress site in maintenance mode. It will add a nicely looking and completely customizable maintenance page or coming soon page with user admin rights and full access to back- and front end. The plugin has been downloaded 1.4 million times and receives a rating of 4.3 out of 5 stars.

    This very useful and flexible plugin will allow you to add a subscription form, countdown timer, contact form, social media icons, SEO options, backgrounds, colors, texts and many other features. The plugin can be used both for maintenance mode or coming soon mode and works also on WordPress multisite and is completely responsive so it looks nice on all screen sizes.

    If you like to share anything about the content of this carefully selected Top 5 list, please mention this in our comment section below or join us on Facebook, Google+ or Twitter. We hope to hear from you.

     

    The post 5 useful and free maintenance and coming soon WordPress plugins appeared first on Codzcook.

  • Automaticc’s Jetpack plugin is a very useful plugin which can certainly add something extra to your WordPress website. Although the plugin itself is continuously updates and new features are being added every month, the Jetpack plugin exists of 34 modules of which many are automatically activated after plugin install. This eventually could slow down your WordPress site if you don’t deactivate the modules you are not using.

    So, if you do want to enjoy the benefeits of the Jetpack plugin but do not want to install the plugin because of the many modules you won’t be using and/or porsinle websites speed issues, there are some great alternatives in the WordPress.org cataloge. Let’s take a look at 5 of them.

    Jetpack LiteJetpack Lite

    Author(s): Samuel Aguilera

    Current Version: 3.0.2

    Last Updated: 04/09/2014

    jetpack-lite.3.0.2.zip

    Jetpack Lite

    This plugin has been developed by Samuel Aguilera as a fork of the original Jetpack plugin. The Jetpack Lite plugin completly removes all Jetpack modules except for the Stats and Wp.me Shortlinks modules. In earlier versions it was not necessary to install the Jetpack plugin but in the recent versions of the Jetpack Lite plugin the Jetpack plugin is also required.

    Although this might not seem too logical to most WordPress users, the original plugin is used in case of updates but aside of the Stats and Shortlinks modules no other modules are loaded by Jetpack so its aves memory and resources on your WordPress site. So, if you only want the Stats module activated, the Jetpack Lite plugin is a great alternative.

    Slim Jetpack

    Author(s): WingerSpeed

    Current Version: 2.7.0.1

    Last Updated: 10/01/2014

    slimjetpack.2.7.0.1.zip

    Slim Jetpack

    Although Jetpack is a great collection of plugins there are WordPress who don’t like to link and connect to an WordPress.com account, necessary for some modules to vene work on o self hosted WordPress website. The developers behind the Jetpack Slim plugin wanted most of the modules of the original Jetpack plugin but without the initial WP.com login.

    With the Jetpack Slim plugin you can still make use of most modules in the original Jetpack plugin but, as the developers already mention on the plugin page, their version is incompatible with the original version because of a lot of API functions which had to be removed.

    Therefore if you want to use the Slim Jetpack you will have to delete the original Jetpack plugin. If you want the much acclaimed Jetpack Stats module then you will have to go with one of the alternatives earlier mentioned or with the original Jetpack plugin. The stast module requiers a connection with a WordPress.com account.

    Gallery Carousel Without Jetpack

    The gallery carousel in the Jetpack plugin is a very nice feature but there are WordPress users out there who do want to use the Jetpack Carousel but without be forced to install the Jetpack plugin and connect to WordPress.com. The guys at WPbeginner forked the Carousel module from the original Jetpack plugin and released it for everybody to use freely.

    THe carousel feature of Jetpack transforms the standard built-in WordPress galleries into an immersive full-screen experience with comments and metadata. So if you want to make your typicl WordPress photo gallery stand out, simply use this Jetpack fork and jQuery Gallery Carousel plugin without installation of the Jetpack plugin.

    JP Widget Visibility

    Author(s): JP Bot

    Current Version: 3.4.1

    Last Updated: 24/03/2015

    jetpack-widget-visibility.3.4.1.zip

    JP Widget Visibility

    One of the great features of Jetpack is the Widget Visibility module. With the Widget Visibility module you can control which pages your widgets appear on. Sometimes you don’t want certain widgets to be visible on all pages throughout your theme so with this module activated you can choose the visibility.THis is definitely a feature which many WordPress website owners can use.

    To prevent installing the Jetpack plugin, you can choose the JP Widget Visibility plugin as well. It does exactly the same thing but without the whole Jetpack install. Just expand the widget and click the Visibility button next to the Save button. Then you can choose the visibility options so you can hide widgets on certain pages. Sometimes this can be very useful on your site.

    JP Sharing

    Author(s): JP Bot

    Current Version: 3.4.1

    Last Updated: 24/03/2015

    jetpack-sharing.3.4.1.zip

    NB There are many other Jetpack stand alone plugins from JP like the JP Markdown, JP Gravatar Hovercards, JP Omnisearch and JP Custom CSS.

    Jetpack Sharing (JP Sharing)

    Adding Social Share buttons to your posts and pages is essential nowadays and the Jetpack plugin has the Sharing module incorporated. Although many themes have a Social Share possibility, it is still nice to know you can also include this manually. If you don’t want to use the Jetpack plugin you have the possibility of activating the JP Sharing plugin.

    This plugin – formerly known as Jetpack Sharing – has been rebranded to JP Sharing and was one of the first forks of a Jetpack module. With this plugin activated you can enjoy the same features as the original Jetpack module but without installing all Jetpack’s modules. With JP Sharing you can place your typical Social Sharing buttons underneath your posts and/or pages. What you don’t get with this plugin is the much acclaimed Publicize option, unfortunately.

    If you like to share anything about the content of this carefully selected Top 5 list, please mention this in our comment section below or join us on Facebook, Google+ or Twitter. We hope to hear from you.

    The post 5 best Jetpack plugin modules alternatives for WordPress appeared first on Codzcook.

  • When you want to start your own blog or website based on WordPress there is always one question you have to ask yourself: Is it better to go with WordPress.com or with WordPress.org? What are the differences and/or pros and cons of the one compared to the other. It can be a bit confusing, especially if you are new to the WordPress scene. Let us explain some differences to guide you to the best option for your website needs.

    One major difference has to be mentioned before we start: free Vs paid. WordPress.com is a free service where you just have to create an account and start blogging. WordPress.com is hosted externally on a server while with WordPress.org you will have to contract a hosting company yourself. Although the WordPress.org software is FREE of charge, webhosting and a domain are not. This is already one of the biggest differences to start with.

    Plugins (2)

    Themes

    One of the benefits of WordPress.org is the fact you will install all the software on your own/contracted server which will be linked to your domain. You own your stuff which will give you more flexibility and security. This is also important when you choose a theme. These can be free  or Premium themes which could be bought on Themeforest for instance. You can modify, customize and do anything with your theme to match the looks with your business or wishes.

    On WordPress.com you are limited to free themes which exist in the WordPress theme catalog. These themes cannot be modified so you won’t be able to add codes and/or modify CSS for a different look. There are however some Premium themes available on WordPress.com but still the modification posibilities are nothing compared to the selfhosted WordPress.org.

    Plugins

    Besides themes, plugins are also a very important part of your WordPress installation. There are thousands of free plugins to be found in the WordPress.org catalog and these can easily be installed from within the theme’s dashboard and plugin section. There are also thousands of Premium plugins which can really add value to your own WordPress.org website, for instance on Codecanyon or WPMU.org.

    On WordPress.com there are no third party plugins allowed which will make your website more basic and less flexible. Still, WordPress.com comes with a lot of built-in plugins but nothing compared to WordPress.org where you can upload any free, paid or custom plugins.

    Plugins (1)

    Costs

    As mentioned before, the WordPress discussion also has to focus on free Vs paid. With a WordPress.org installation and website you will need to contract a webhosting company and have your own domain name. There are many companies who will offer you the best deals but there are always monthly and/or yearly fees to be paid. Although the WordPress core software is free of charge, Premium themes and plugins are not. You can always use free themes and plugins but be careful what you download and install, check codes and errors and make sure the theme developers know their business.

    WordPress.com blogs are free of charge but again they come with their limitations. With your free account you have up to 3GB storage space for texts and images. If you want more storage space you can upgrade to 13GB for $100 per year including your own custom domain name and advanced customization but without Premium themes included. There is also an upgrade of $300 per year which includes unlimited space and 50+ Premium themes.

    Maintenance

    Your WordPress.org blog, personal or business website needs constant maintenace, meaning you have to upgrade themes, plugins and even WordPress core files when a new version is released. You also have to monitor your comments and check your spam regularly and of course make sure you are hack-free. You can do all of this yourself if you are familiar with WordPress but if you are not you will have to pay someone to do this for you. Themes and plugins are continuously upgraded and daily checks will be necessary.

    With WordPress.com you don’t have to worry about anything. The WordPress staff takes care of all the maintenance including updates of themes, WP Core files, optimization etc.

    Plugins (3)

    Backups

    Making regular backups of your WordPress.org based website is VERY important. Luckily most hosting providers schedule this on a daily basis and if something will go wrong or get lost, you can always contact them for your backup. Making your own backups is still very much recommended since updating themes, plugins and WP core files can easily mess up your site. There are various services who can take care of scheduled backups or you can use free or premium plugins and even do it manually by downloading all the website’s files to your dekstop.

    With your WordPress.com website you will not need to worry about backups since the WordPress team will take care of this. Nothing will get lost or disconfigured.

    So … which one will it be

    As you can see there are pros and cons of using WordPress.org or WordPress.com and it is up to you to choose the right platform. WordPress.org gives you much more flexibility, customization and extension posibilities but there are also costs involved for domainname, webshosting, themes, plugins and maintenance.

    With WordPress.com your site will become part of the WordPress.com community which is good for your appearence in the search engine results but WordPress.com sites give you less flexibility and customization posibilities and your website will look the same as others. For your personal blog this could be a good choice but you will probably make the switch from .com to .org in the future if you get familiar with WordPress and the powers of your own hosted website.

    The post 5 Difference between WordPress.com and WordPress.org appeared first on Codzcook.

  • Sometimes you have more than just one WordPress website to manage and switching back and forth, logging in and out and checking all websites one by one for updates can be a time consuming and annoying thing. Thanks to a number of services and websites, managing multiple WordPress websites can be less challenging.

    There are various ways of managing multiple WordPress websites which offer plugin, theme and WP core updates and notifications, possibility of backing up websites, moderating comments, see analytics and much more. Some of these services are performed on stand alone websites, others have to be hosted on your own server or work with plugins.

    All services have one thing in common: There is a main dashboard where you can manage all your connected WordPress websites and there is a plugin which has to be installed on the separate websites which you want to manage. This plugin makes the connection between your WordPress site and the main multitasking dashboard. Let’s take a look at the 5 most popular and most used services at this moment.

    Main WP

    ManageWp

    ManageWp is perhaps the most used and well known WordPress management service online at this moment. ManageWp has been developed by WordPress plugin developer Vladimir Prelovac. The main interface of ManageWp is modern and easy to understand.

    On the left are the connected WordPress websites listed and in the middle you see the updates available of plugins, wp-core and themes.Also in the middle you have the possibility to delete post revisions and remove spam comments. On the right panel you can see Quick Access buttons and site analytics, if connected. All items/tabs can be moved from left to right or the middle so you can create your private dashboard.

    There are various plans available but all of them allow connecting 5 WordPress websites for free which is great for those WordPress developers or users who have 5 or less sites. Premium plans start at $0.80 per website/month for individual bloggers, $2.40 per website/month for small businesses, marketers and web developers or $4.80 per website/month for larger businesses and web marketing companies. With the premium plans come additional features like backup and restore functionalities.

     

    InfiniteWP

    InfiniteWp

    InfiniteWp is a FREE application that you can install on your very own server. This application manages all of your day to day WordPress tasks like upgrading plugins, themes and Wp-core files. InfiniteWp will create one master login after which you can add WordPress websites by downloading and installing the extra plugin on each website you want to connect.

    With InfiniteWp you can bulk install favourite plugins and perform updates for all existing plugins. You can also use this application to backup and restore websites. InfiniteWp is a free application but the basic version lacks some features which can be found at other similar services. Also, setting up InfiniteWp can be sometimes difficult since your server/hosting must meet some requirements.

    There are premium add-ons which will give your InfiniteWp application some extra features like website cloning and scheduled backups but unfortunately these are not the most cheap ones. Managing comments can cost you $49, Install/clone websites $99 and scheduled backups $69. Still, if you only need some basic functionalities and want your multi-Wordpress service hosted on your own server, InfiniteWp is a good alternative.

     

    WP Remote

    WP Remote

    With WP Remote you can monitor an unlimited number of WordPress websites for free. You can easily update WP-core files, plugins and themes with a single click and even download a snapshot (backup) of your website. All this can be done through your dashboard on the WP Remote website. There are some premium plans available as well.

     

    Main WP

    Main WP

    In contrary to other WordPress services, Main WP is a plugin which you have to install on an existing WordPress website. After you have downloaded the Main WP Dashboard plugin and installed it, you have to download Main WP Child plugins to install on the individual websites you want to connect.

    Main WP will let you control and manage up to 5 websites free of charge with no limitations on the premium features. If you want to connect and manage upto 25 websites you have to pay $24 a month, upto 100 websites $49 a month and unlimited websites for $79 a month. Additional functionality can be added with extensions, free and premium versions.

     

    iThemes Sync

    Ithemes Sync

    Ithemes Sync is another great WordPress maintenance plugin which will allow you to manage multiple separate WordPress installations under one dashboard. The plugin is developed by the same people who developed the popular BackupBuddy at iThemes.

    To install and setup the iThemes Sync you first have to download the plugin from the iThemes website after login or setup an iThemes account. With the standard version of the plugin you can manage and sync 10 WordPress websites for free. If you need/want more you can switch to the 25 site plan for $50 per year, 50 site plan for $90 per year or the 100 site plan for $170 per year.

    After you have downloaded the plugin you will be asked to sync it with all other WordPress websites you want to manage by installing the same plugin on all individual sites to make the connection to your iThemes Sync.

    The post 5 effective ways of managing multiple WordPress websites appeared first on Codzcook.

Comments

The Visitors says
Download Free Software Latest Version