In this article, we are going to tell you, how you can decode HTML entities in your WordPress post using PHP. For example, if you write © in your blog post, it will be displayed as ©. To do that, you need to create a simple WordPress plugin. Go to your “wp-content” folder, then to …
Read More “Decode HTML entities in WordPress PHP”
If you ever encounter an error in Vue JS that says “mixed spaces and tabs”. You can fix it by simply running the following command: Removing the ESLint will fix this issue in your Vue JS app. Check out our more projects and tutorials on Vue JS here. Video tutorial:
It is a single-page ecommerce website developed in Vue JS. Vue JS is an open-source Javascript framework specifically built to design user interfaces and is widely used for creating single-page applications. Node JS is a Javascript run-time environment developed for creating the backend of applications. Its framework Express is widely used for creating APIs. It …
Read More “Ecommerce website in MEVN stack”
In this article, we are going to teach you, how you can share local storage between websites using Javascript. Local storage is not accessible even within subdomains. So if I set the value in one subdomain, it will not be accessible in another subdomain. Video tutorial: To share the local storage value between websites, first, …
Read More “Share local storage between websites – Javascript”
“Constra” is an HTML static template in HTML & CSS. It is an HTML template designed for the construction website. The businesses that allow construction-related services. We have converted to a dynamic website using Vue JS and Laravel. You can check out the following tutorials. In these tutorials, we have shown you, how to convert …
Read More “Dynamic constra template – Vue JS & Laravel”
In this tutorial, we will teach you how to develop a password-less authentication system in Node JS and Mongo DB. We will create a simple form with just one field, email. The user will enter his email address and hit submit. As the form submits, we are going to send him an email with a …
Read More “Password-less authentication in Node JS, Mongo DB”
In this article, we are going to teach you how you can deploy the Node JS app on a VPS (Virtual Private Server) or a dedicated server. Make sure you have Node JS, NPM (Node Package Manager), and PM2 (Process Manager) installed, you can run the following commands to see if they are installed. If …
Read More “Deploy Node JS app on VPS or Dedicated server”
In this tutorial, we will teach you how to show WordPress posts in your PHP website. Make sure you run this code from inside your server where the WordPress blog is hosted. This means that if your WordPress blog is hosted on the main domain like “adnan-tech.com”, then this code should be on any of …
Read More “Show WordPress posts in PHP website”
In this article, we will teach you how to have adult image validation in your PHP website. Suppose you are creating a website where you allow people to upload images. And some people start uploading nudity images. Now you want to stop them. Video tutorial: For the sake of simplicity, we are creating a simple …
Read More “Adult image validation – PHP”
In this article, we are going to teach you, how you can have nested modules in your Node JS project. Nested modules help in splitting a large code-base into smaller files. This helps in debugging and scaling easily. Video tutorial Let’s say that you want to access the following URL: You want to have a …
Read More “How to create nested modules – Node JS”