• What is RabbitMQ?
    ,

    What is RabbitMQ?

    RabbitMQ is an open-source message broker. In short, it manages our queues (asynchronous operations). The broker’s server is written in Erlang, while the API for clients is available in many programming languages, e.g. PHP, java, c #, swift and more. Synchronous and asynchronous operations Synchronous operations are operations (also known as blocking operations) that stop…

  • PHP rules in Coditive

    PHP rules in Coditive

    Code formatting has nothing to do with system performance, optimization or any technical aspects. It is intended to help the whole team keep consistency, readability and conventions that are the standard in the team. The article describes formatting rules that should be applied to work smoothly in the team. Exceptions Consistency is key when it comes…

  • [Plugin] Simple Customizations for WooCommerce

    [Plugin] Simple Customizations for WooCommerce

    WooCommerce lets you easily sell products or services online. A plugin allows you to create a working e-commerce store with basic features, however customizing your store to your preferences may require coding skills. This is why the Simple Customizations for WooCommerce plugin can help you – we’ve made the most requested changes that aren’t available…

  • [Plugin] Simple Floating Contact Form

    [Plugin] Simple Floating Contact Form

    A contact us form is commonly used across the entire web and most companies encourages their website’s visitors to contact. These form can appear in various styles with different functionalities, everything depends on clients needs. But mostly contact forms exists for a one specific purpose, so when we are looking for simple solution for our…

  • How to take care of WordPress updates?

    How to take care of WordPress updates?

    If you are w Web Developer working with WordPress CMS, for sure you are familiar with WordPress core and plugins updates. If more plugins you are using on you website, then more update notifications you can receive. Of course, the best approach is to always have the most recent version of all components, but before…

  • How to use fetch for AJAX requests?
    , , ,

    How to use fetch for AJAX requests?

    AJAX is one of the most useful solutions that allows exchanging frontend data with the backend one asynchronously (in the background) without interfering with the display and behaviour of the existing page. This article shortly describes how it was used in WordPress as usual and what are the recommendations for the latest web stack. If…

  • [Plugin] Post Draft Preview

    [Plugin] Post Draft Preview

    The post-draft mechanism is a useful option in WordPress when you want to save any post (for example blog article or e-commerce product) but you don’t want to publish it yet. You can also send the draft URL to someone else but this person must have appropriate access to the wp-admin section to show the…

  • A quick guide to cronjobs in WordPress
    ,

    A quick guide to cronjobs in WordPress

    Whenever you want to automate some recurring tasks cronjobs are one of if not the first thing we can think of. In this article, we’ll go over few examples of how to use them. “WP-Cron” vs “Server Cron” The first important thing that you need to know is that WordPress by default uses “WP-Cron” which…

  • Attributes and listeners inheritance in Vue.js

    Attributes and listeners inheritance in Vue.js

    When developing any application with Vue.js, you probably need to create some kind of input field component for your forms. Moreover, the fields can vary from each other with many details like labels, hints, prefixes, suffixes, icons, validation messages, etc. From the HTML point of view, the input field itself is not enough to achieve…

  • How to search and replace data in the WordPress database?
    ,

    How to search and replace data in the WordPress database?

    Changing the system domain in WordPress often may require more work than just modifying some system constants or specific values. Depends on the system it may require direct changes in the database, and that’s why it is good to know how to make such changes without spending hours on manual work. Problem Why is this so important? WordPress…

  • Common code smells in web development
    , ,

    Common code smells in web development

    The code smells are places in the system architecture that indicate problems that require more attention. These are mostly connected with code readability, and even sometimes with system optimisation so we should give special attention to them.

  • WP-CLI custom commands
    , ,

    WP-CLI custom commands

    WP-CLI WP-CLI is the command-line interface for WordPress. It lets you manage your WordPress installation directly from the command line. There are many ready-to-use commands (check the full list here), the most frequently used one by me is search-replace since it is on par if not significantly faster than other tools that I used for…