Recently , i have started learning Magento 2 through Magento’s official website. Initially, I faced issues with installation as i was trying to install it in windows OS and it is clearly mentioned that magento 2 doesn’t support windows OS and mac OS.I fixed issues after installation somehow, after this i explored directory and file
What is a Session? A session is all about the total time taken to complete an activity. In a computer any session begins or “user session” begins when the user logs in or gets an access to any computer, network server or any software service. The session ends when the user shuts down the computer
A brief overview over LAMP One of the most famous and known examples of web service stack is LAMP, which stands for LINUX, APACHE, MYSQL, and PHP. Here Linux is the operating system to install all the other software. Apache serves the HTTP Server while MySQL serves as the database management system. PHP covers all
Step by Step Guideline on Installing MongoDB on Ubuntu MongoDB is an ultimate free, open-source, distributed, NoSQL, document database, which serves as the common purpose in modern web applications. It features horizontal scaling, high availability & geographical distribution. There are many things that it supports like Ad hoc queries, indexing, and even real-time aggregation. If
What is MySQL? MySQL is a popular and widely used free open source database. In case you are new to using database available options, MySQL is a good choice as it is easy to install as well as operate. Installing MySQL in Ubuntu different from installing it in Windows therefore in this article, I will
Creating attractive user interfaces for websites and mobile applications has been quite a daunting task until the invention of React JS. Now, you must be thinking what exactly react is? Or how can you get familiar with it? Don’t worry, we have got you covered. In this article, we are going to introduce you to
For dynamic web applications, JavaScript open-source Angular is a basic set of the framework. It helps in developing a single-page web application which is an ideal space for mobile, desktop and web. It is a typescript-based application that uses class & objects to make the code more readable. To build an application that can
Vim stands for vi improved and it is a free of charge, open source software. Its various versions are accessible for nearly all operating systems, Android as well as iOS smartphones. Just in case, if you switch to control mode, the letters on your keyboard will allow you use Vim commands to take actions such
[responsivevoice_button voice=”UK English Female” buttontext=”Listen to Post”] In today’s world, the most important skill to learn is to know how to write a computer program. Nowadays computers have entered almost every sector. Computers are highly useful for an organization to grow. Gone are the days of manual work. Today, in order to store or access
Whether it’s a simple website or a high-end one, developing it is definitely not a cakewalk. A website developer has to work for weeks and sometimes, even months to make sure his or her client is satisfied with the outcome. Now, being a layman, you might wonder, what makes web designing so tedious or complex,
What according to you makes a computer work? Just the Central Processing Unit (CPU), also known as the brain of the computer? Well yes, CPU undoubtedly enables a computer to function but, it’s not just the only thing that contributes to its functionality; there’s another thing that plays a vital role and that is, the
The SEO industry is dynamic. Indeed, a few things remain the equivalent, like relevant keywords in your titles, mobile optimization, and so on. But trends keep changing in an endless winding. Did you know that Google makes thousands of changes to its search algorithms every year? A year ago, Google has been refreshing its algorithm
In this era, speed is everything. No matter how brilliant an employee you are, if you are not working at a fast pace, you will lag; and as a result, you wouldn’t be able to grab the eyeballs of your seniors, be it your team leader or the CEO. Similarly, when it comes to your
Working online has become a trend, many people desire to do the same. The interesting fact is; the number of users are earning well income online. If you have tried researching how people are earning profit online, I’m sure you must have read about AdSense. To help you out, I have assembled a list of
Digital marketing has become extremely popular in the current market scenario and for a good reason. It adds so much value to your brand and helps to reach you across the globe. However, there are certain elements within digital marketing that will help your brand to grow even more in the digital world: Search engine
Laravel has launched its latest version in the market, Laravel 6.0, which comes with newer and improved features over the previous Laravel 5.0. Laravel is an open source PHP framework used in web development. The platform helps simplify processes involved in authentication, caching, etc., to facilitate faster and smoother web development. Top Features of Laravel
PHP programming language has witnessed the newest revolution in the form of its latest major release that everyone in the programming world is talking about – PHP 7. It offers certain enhanced features over its previous versions in order to improve the way web applications are developed and delivered for use in mobile and cloud
There are predefined woocommrece filter hooks to modify the woocommerce variable product price range.You just need to add below mentioned code to your activated theme functions.php.If you are usnig any premium theme then you can add it to child-theme functions.php.Following filter hooks are used to change the woocommerce variable product price range:
I have added extra field to registration form and validated that field.But I had issue while making migration after adding extra column though migration file to save extra field value in database.When I migrate it won’t do any thing.After this, I run migration with refresh option but it roll backed all tables data.And after exploring
I always used to build wordpress project using custom code whatever is requirement.Here, I have used wordpress hooks to customize the registration form.There are pre built action and filter hooks to customize wordpress in-built registration form.You just need to add following codes in your theme functions.php. Add the Custom Field on Front End registration 1.
Recently, I have created e-commerce site using wordpress and woocommerce and it is required to collect more information of customers through extra fields on checkout page.Here, I had many options to customized checkout page using plugins and code.But there was requirement to add fields conditionally according to type of user.For this I used action hook
Irrespective of the industry, it has been found that digital marketing strategy is one of the most important aspects of any marketing campaign. The travel industry too depends on digital marketing for better business. Here are some trends which are bringing about a change in this industry. 1.Spending habits: The spending habits of the younger
With the New Year professionals must be busy formulating new digital marketing strategy which will work in this new year. For this it is important that you frame the strategy by taking into consideration new technology and trends
Recently we have built a social community site in wordpress and we have to create different levels of users according to their membership.So, we dont want to allow users to access admin panel and display admin bar according to their accees level.Here, we will show you how to achieve it. Disable wordpress admin bar
Contact form 7 has many pre-defined hooks through which you can validate any field.Here, in the Contact Form 7 formatting.php module, validation rule is defined by below mentined method.You can override it by filter hook mentioned in apply_filters () through functions.php
As we know that contact form 7 is built up using different action and filter hooks.Here, we need to use JavaScript action hook “on_sent_ok” through which we can hide the contact form 7 as on_sent_ok hook is being called after the form is successfully submitted.There is option to add JavaScript code in Additional Settings form
There are basically three main functions which will be used to add custom meta box for taxonomy and these functions are invoked through following hooks. 1. {taxonomy_name}_add_form_fields 2. {taxonomy_name}_edit_form_fields 3. edited_{taxonomy_name} 4. create_{taxonomy_name} Here, we can replace taxonomy_name with any default or custom created taxonomy accordingly.I have used “Woocommerce product taxonomy” in below mentioned example
What is use of ” routes.IgnoreRoute(“{resource}.axd/{*pathInfo}”); in route config? It is used to restrict access to web resources like WebResource.axd, ScriptResource.axd from request. What is use of TempData? TempData is used to pass data to current request and its subsequent request.It data is lost once it it read, we can use Keep() and Peek() method to
You can move the activity after new comment at top by updating the activity publish date and time with current date and time.Please review below mentioned code in which I have used buddy press predefined action and filter.Add following code to functions.php