It’s a terrific method to save time, get more leads, and increase form conversions to create a dedicated landing page in WordPress with Modern design. We will learn how you can make a landing page in WordPress using Elementor easily .
In this Tutorial, we’ll demonstrate how to use WordPress to create a landing page with an amazing layout.
⭐ Video Tutorial
In the above Tutorial, you will learn about how you can create a very simple and modern website landing page using elementore . I hope you like the whole tutorial .
We did it! ? Hope you likeHow to Create a Landing Page in WordPress | Elementore. For such projects do visits and comment on which project should I pick next.
Are you starting with React? I will be Building a Simple interest calculator using React Hooks. You can use this simple interest calculator for your personal project and host many calculators like this.
What are we building? ?
we are going to make very basic simple interest calculator using react hooks. Basically, that will take user input and also we going to build a form and display the result along the way. Additionally, I wanted to show off the React hooks API, which lets function components use lifecycle methods and have a state behind the scenes. The sole method for managing state in earlier iterations of React was through class components. This results in a significantly improved development experience.
Section 1 – Create-React-App Section 2 – Add some CSS ( App.css ) Section 3 – Add Logic and state ( App .js ) Section 4 – Conclusion
Section 1
We don’t need anything complicated to make this project so we’ll use the boilerplate Create-React-App gives us. To create the project, navigate to a directory of your choice and type:
npx create-react-app simple_interest_calculator
You may access the project after create-react-app has finished executing.
cd simple_interest_calculator
To launch the project in Visual Code (or any editor of your choice):
code .
Let’s install Material UI is a library of React UI components that implements Google’s Material Design. So that we can use their components. By following this doc here I am using npm you can use either yarn too for installing this
The emphasis of this tutorial won’t be on styling, so feel free to add additional styling or copy this CSS into your App.css if you’d like. You may also see examples of how I used my classes on my GitHub repository.
We did it! 😀 Now you can make any calculator for your next project. It works on mobile too! I hope you like Building a Simple interest calculator using React Hooks. for such projects do visits and comment on which project should I cover next.
React Router is a library for routing in React js. It allows the navigation between views of various components in React Application, Which allows changing the browser URL. In this blog, we will learn about react routing or navigate through different pages by using react-router-dom. Last but not least we will make React Router v6 in React Js With a Complete Project in complete explanation.
Let’s create a simple React application to understand the flow of react-router. In this application, the components would be the Home component, About component and the last one is Contact component so that we can jump or navigate to different components easily. You can refer to the below example of how it looks at the end of this tutorial. Or you can Follow the Youtube tutorial also.
YouTube Tutorial Video :
Let’s start making Our application by jumping to the first step
Setting Our Environment of React Application:
Create a React Application Using create-react-app. Let’s call it ziontutorial and you can use any name instead of this name. In the below example, I am using git bash you can also use cmd ( normal command prompt ) inbuilt into your system.
After the Development environment is ready. Now let’s move into the folder and open the terminal of your project and install this React Router in your Application.
Let’s Install the React Router Dom in your Application.
App.js
Here you have to import these important dependencies for performing the react routing[ import { BrowserRouter, Routes, Route } from ‘react-router-dom’; ] By importing these components you are able to perform routing easily.
import './App.css';
import { BrowserRouter, Routes, Route } from 'react-router-dom';
import Navbar from './components/layout/Navbar';
import Home from './components/pages/Home';
import About from './components/pages/About';
import Contact from './components/pages/Contact';
function App() {
return (
<div className="App">
<BrowserRouter>
<Navbar/>
<Routes>
<Route path="/" element={<Home/>}/>
<Route path="/about" element={<About/>}/>
<Route path="/contact" element={<Contact/>}/>
</Routes>
</BrowserRouter>
</div>
);
}
export default App;
Here is the List of React Router Components
BrowserRouter: To keep your UI in sync with the URL, BrowserRouter is a router solution that makes use of the HTML5 history API (pushState, replaceState, and the popstate event). All of the other components are stored in the parent component.
Routes: Routes is the new component introduced in version 6. Switch is replaced by this routes component.
Route: it conditionally shows components and it works when routes match to the rendered components.
Links: The Links component facilitates navigation inside the application by creating links for various paths. It functions like an anchor tag in HTML.
Now let’s make other components Like Home.js, About.js, and Contact.js so that we can jump over different components by using react-router-dom.
import React from 'react'
const Home = () => {
return (
<>
<div class="px-4 py-5 my-5 text-center">
<h1 class="display-5 fw-bold">Hellow People</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">Quickly design and customize responsive mobile-first sites with Bootstrap, the world’s most popular front-end open source toolkit, featuring Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful JavaScript plugins.</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<button type="button" class="btn btn-primary btn-lg px-4 gap-3">Getting Started</button>
<button type="button" class="btn btn-outline-secondary btn-lg px-4">Contact-Us</button>
</div>
</div>
</div>
</>
)
}
export default Home
About.js
import React from 'react'
const About = () => {
return (
<>
<div>
<div className="container">
<h1 className="mt-5">About Us</h1>
<p className="lead">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
</div>
</>
)
}
export default About
Route: Route component will now help us to establish the link between the component’s UI and the URL. To include routes to the application, add the code given below to your app.js.
Also, match or type the same Url in navbar.js with to=”” with same as path too .
Finally Output Look like this I hope you like this blog and if you have any problem regarding this project you can connect and comment in the comment box.
Conclusion
That’s it congratulation you did it
I hope you enjoyed this little project We used react router dom to navigate to different URL . By making React Router v6 in React Js With Complete Project project you learn new things.
For more tutorials like this, you will follow our youtube channel and subscribe to our Instagram handler. I hope you like the video also which I have uploaded on youtube please like it and spread it with your friends too.
How to connect with database locally with mongo DB
In this tutorial, we will learn how to connect databases locally with mongo DB . if you want to learn new things in react do comment in the post which post you would like to learn. So without wasting any time let’s start the how to connect with the database locally with mongo DB | MERN.
Let’s start with the first step to connect with mongo DB locally.
First, we have to pass the process file.
const mongoose = require("mongoose");
require("colors");
//connectDB function // this function is basically used to connect with the data base and the make a connection with the data base locaally
const connectDb = async () => {
try {
const conn = await mongoose.connect(process.env.MONGO_URI);
console.log(`MongoDB Connected ${conn.connection.host}`.bgYellow);
}
catch (error) {
console.log(`Error : ${error.message}`.bgRed);
process.exit(1);
}
};
module.exports = connectDb;
Conclusion
So there we have it. If you want to easily connect your database do follow these above steps. To learn more about mongo DB and other tutorials do comment on this . Hope you learn a lot from this.
The topic of when to publish on Instagram in order to increase traffic to one’s page and attract more visitors is one that has received a lot of excitement among content producers and online business owners.
For producers, deciding what to develop in terms of content and what is popular and what to produce in order to attract more original viewers may be very stressful. Knowing when to post minimizes the creators’ load.
I spent a significant amount of time researching and making my own mistakes. As a result, I’ve gathered some advice and knowledge regarding the ideal posting times.
For more organic traffic to your business page or your niche, we’ll look at when to post on Instagram in this blog.
you can also read ina precise manner with this blog
When Should I Post On Instagram?
Because each time zone is unique, it encompasses the entire globe. Knowing which segment of a worldwide audience you’re attempting to attract is crucial.
Once you figure out which specific part you’re targetting Now, think about what people do daily basis according to their timeline
First: When do people usually wake up and what’s the first thing the majority of people do? Scroll on their search feed for something or maybe what most people do when they first wake up is browse the search feed or perhaps the reels for something fresh to discover on reels for something new to find.
Therefore, between 7-8 in the morning can be a perfect time to post on Instagram.
Using a smartphone while eating lunch is another instance of individuals doing so. Posting between 11 and 1 p.m. while individuals are taking their lunch break will assist in guaranteeing that your post rises to the top of their feeds because lunch breaks often occur at the same time across all time zones.
The Ideal Moments To Post On Instagram
Another thing to keep in mind while publishing is that Instagram’s algorithms constantly prioritize promoting the most recent posts, making it extremely important to understand the period when your users are most active.
Here is a chart that shows what day and what time to post.
Monday
6 a.m., 11 a.m., 1 p.m.
Tuesday
8-10 a.m., 2 p.m.
Wednesday
9-11 a.m.
Thursday
11 a.m.-2 p.m., 7 p.m.
Friday
10 a.m.-12 p.m., 2-4p.m.
Saturday
8-11 a.m.
Sunday
6-8 p.m.
When Is The Best Time To Post Reels To Instagram
In line with the TikTok age, video material is becoming more popular. Try uploading reels during these times if you want to increase audience engagement with your content:
On September 23, 2022, the Flipkart Great Indian Festival is anticipated to provide a significant discount on the iPhone 12. It’s interesting to note that Apple is presently offering a mouthwatering discount on the device, which is priced at INR 50,900. The problem is that there is only one colour and one variety available. But with the iPhone 12, this is one of the largest reductions available.
Prior to the Flipkart Great Indian Festival, the price of the iPhone 12 falls to a record low (2022) If one chooses the purple hue, the 64 GB version of the iPhone 12 is now offered for a fixed price of INR 50,900. There are several colours available, but they cost a little extra. The 128 GB and 256 GB models are equivalent in this regard.
For an iPhone 12, this is one of the biggest reductions outside of regular deals. Additionally, clients can save money on the gadget by using cards from partner banks to make their payments. Given that the iPhone 14 is currently on sale in stores, this appears to be a regular markdown from Apple.
This brings up a crucial query: Is it worthwhile to purchase the iPhone 12 when it’s on sale? Given how effective the device is, the response should be affirmative. The 12th generation Apple flagship can still outperform most phones because the company has always produced its models early. Despite having a relatively expensive base price, the current discount makes it quite intriguing.
However, there are certain more factors that a buyer should think about. First off, only purple offers the highest discount, whereas the other colours offer smaller savings.
Second, the deals on the 128 GB and 256 GB editions aren’t good enough and only provide large discounts on the 64 GB variant. However, the primary justification for waiting will be the
On September 23, 2022, the Flipkart Great Indian Festival is anticipated to provide a significant discount on the iPhone 12. It’s interesting to note that Apple is presently offering a mouthwatering discount on the device, which is priced at INR 50,900. The problem is that there is only one color and one variety available. But with the iPhone 12, this is one of his prompts a discussion among prospective purchasers about whether they ought to take advantage of the current bargain or hold off until the Flipkart Great Indian Festival (2022), which is scheduled to begin on September 23.
Currently, if one chooses the purple hue, the 64 GB iPhone 12 model may be purchased for a fixed price of INR 50,900. There are additional colors offered, however, they are slightly more expensive. The 128 and 256 GB models also fit this description.
With regard to an iPhone 12, this is one of the biggest reductions outside of regular deals. Additionally, clients who use credit cards from partner banks can acquire the item for less money. Given that the iPhone 14 is now available in stores, it’s hardly unexpected that this appears to be a regular markdown from Apple. This brings up a significant query: Is it worthwhile to purchase the iPhone 12 at its current price? Given the quality of the gadget, the answer should be affirmative. The 12th generation can still outperform most phones because Apple has always produced its flagships earlier than expected. Although it may have a very high base price, the current discount makes it rather intriguing.
The buyer should still take a few things into account, though. First off, only the purple option is offered with the highest discount, while the other choices have smaller ones. The deals on the 128 GB and 256 GB varieties are insufficient, and only significant reductions are offered on the 64 GB variant. The rumors, tIf rumors are accurate, the iPhone 12 will be discounted even more during the Flipkart Great Indian Festival (2022). Although the confirmed pricing hasn’t been disclosed, it is anticipated to be less than INR 40,000. There is no indication to rule out the possibility of such a discount, but it cannot be confirmed until the start of the sale. though, will be the primary motivation for waiting.
Thinking of upgrading your television? Get your hands on latest electronics as #AmazonGreatIndianFestival is now LIVE exclusively for Prime members. #PrimeMembers start this festive season with the joy of big deals on big brands!
There is no denying the Apple iPhone 12’s superior quality, which has met expectations on a number of levels. The timing of the current discount is a little wrong, though, and if anything, it might be a sign of a bigger discount to come. It might be prudent to wait two more days before observing the updated pricing determined by Flipkart India.
Google offers these suggestions to help your website perform better in search results. Keep these steps in mind when building your e-commerce website.
Throughout these steps, google encourages retailers to use the google merchant center because it allows the merchants to upload product data.
Data has been collected more accurately from Merchant Center feeds than from Googlebot crawling your website because they are made to be read by computers.
Confirm Product Indexing
Google bots can miss your product pages while crawling if they aren’t linked to your other pages on your e-commerce store. Take it as an example only on-site search results can be used to access some product pages
You can make sure that google bots crawl through all your product pages by using tools such as an XML sitemap and google merchant center.
Doing this will allow google to discover all the products on your e-commerce website.
Add ALT Tags To Your Images
Add alt tags to all your images used on your e-commerce store. This not only just improves your SEO by allowing google bots to scan all the alt text included in your images,
However, it also aids those who are blind or have low vision in understanding your graphics.
Cut Down on Price and Availability Lag
Google visits your website and crawls the pages on its own schedule. As a result, Googlebot could not discover modifications to your website until the subsequent crawl.
When a site changes, like a product running out of stock, delays might cause search results to lag behind. The best course of action would be to try to reduce discrepancies in pricing and availability information between your website and Google’s interpretation of your site as a result of time lags.
Google recommends keeping merchant center product feed pages updated on a more consistent schedule.
Increase The Impact Of Your Meta Descriptions.
Meta descriptions can help a website show up in social media and search results, luring users to go through and visit it.
Write a more persuasive meta description in order to boost CTRs for organic search.
Additionally, they might aid in the comprehension of a web page’s purpose by search engines like Google.
One of the various SEO tools you may use to do a site audit may flag or warn you about duplicate or missing meta descriptions.
This could imply that as part of your SEO plan, you need to make sure that each page has a distinct meta description.
Although improving your CTR can, this won’t have a direct effect on your rankings.
Prioritize long-tail keywords.
Concentrate on long-tail keywords. Long-tail keywords are longer, more precise keyword combinations that site visitors are more likely to utilize.
Long Tail Keywords have a higher potential to drive a more organic amount of traffic to your e-commerce store.
For now, this blog is at an end. For your e-commerce store, we covered the top 5 SEO tips. I sincerely hope that this was beneficial to you. For more articles like this, be sure to visit our website [https://ziontutorial.com]
Free Crucial WordPress Plugins For Ecommerce Stores
Were we looking for Free Crucial WordPress Plugins For Ecommerce Stores? I got you, when it comes to finding a plugin we must do our research because we don’t know how the plugin actually works and if it’s free or not. In this blog, we’ll see some free and crucial plugins we need while building our e-commerce website.
WooCommerce is a well-known plugin and is used so often. it’s a free plugin and there is a premier version for woo-commerce. Plugin quickly became famous for its simplicity and all the features it provides. WooCommerce is specifically used to turn your WordPress website into an online store. It helps to customize your website to the next level with just some little work. So, if you’re looking to build your own customized online store woo-commerce is a plugin to go with. it’s one of the Free Crucial WordPress Plugins For Ecommerce Stores
Elementor is a very crucial and well-known plugin used to build e-commerce stores it allows you to customize any WordPress theme without coding. Elementor is a plugin that allows WordPress users to create and edit websites by just the drag-and-dropping technique. It’s the easiest and the best plugin one could ask for easy to use and learn. Elementor is a free plugin and has a premier version “Elementor pro” too which provides some extra features that the free doesn’t offer. So, if you need to build your own WordPress website or want to customize the existing one Elementor is good to go with. it’s one of the Free Crucial WordPress Plugins
When it comes to creating a better e-Commerce website we need every single feature that will make things easier for the user to use the website and they can shop easily. TI WooCommerce Wishlist is a WordPress free plugin that allows providing a wish list option to your customers that make the work easier for the customers. On the other hand, TI WooCommerce Wishlist is easy to use and easy to operate. TI WooCommerce Wishlist provides you an add-to wishlist option where people can put the product they like and purchase it later. it’s one of the Free Crucial WordPress Plugins
Variation Swatches is another must-have WordPress plugin when building an e-commerce store. It allows you to give variations of your product if u have the same product in different colors instead of creating different products for every color you can give variations options to your customers this is will make the work easier for you and for the customers. It is no complicated work it’s just dragging and dropping things. So, Variation Swatches for WooCommerce is one plugin you should have when building an e-commerce store.
Multiple contact forms can be managed by Contact Form 7, and you can easily mark up the forms and an email’s contents. The form includes features like CAPTCHA, Akismet spam filtering, and Ajax-powered submission. The service provider may receive the IP address and other personal information submitted in a contact form submission if you activate specific plugin capabilities.
This is all for this blog u only need these plugins to make an attractive e-commerce store.
Build A Sum Calculator in React JS – use State Hook & Conditionals.
In this half of the tutorial, we will focus on the fronted part of the application. The code for this React JS Mini-Project Creating Simple Sum Calculator project is on my git Github if you want that source code just comment in the comment box . we make these projects because I decided to take a deep dive into reacting js hooks part, Gain a better understanding of its use case and figure out how to make it play nice with these technologies and I like to play with it so I decided to make this simple project with react which is Creating Simple Sum Calculator using React js | Mini React Js Project. in my point of view if you want to learn something then you have to make something so that you have a better understanding of that technologies and clear understanding of that technologies. -after that write about it and teach about it to some so that other people can gain knowledge and they figure out and do some suggestions for you.
We are going to build a simple React JS Mini-Project Creating Simple Sum Calculator | Mini project. We will be using Hooks’ concept in this project like how to use state and conditional statements together so that you can figure out the concept and better understanding this jargon.
Lets get to work !
we are going to need to install a our application with these simple commands . and then start our application building. create a new folder and run the following commands in your terminal:
npx create-react-app simple_sum_calculator
This is our application Folder structure after making this lets move to another part of our application building part.
Now place the following code on your index.html file.
let’s make this form beautiful using CSS. Just copy the below code and make your style work. So this is the Simple Sum Calculator where we can implement our CSS to make this application interactive.
I hope you enjoyed this little project We used use state hook to manage the state of the application . By making React JS Mini-Project Creating Simple Sum Calculator project you learn new things.
For more tutorials like this, you will follow our youtube channel and subscribe to our Instagram handler. I hope you like the video also which I have uploaded on youtube please like it and spread it with your friends too.