Posts

What is slug in wordpress?

Image
What is slug in wordpress? A slug is a few words which comes after your domain name. slugs are usually a URL friendly version of the post( Where has been automatically generated by wordpress ), but a slug can be anything you like, slug are meant to be used with permalink as they help describe what the content in the URL is For e.g.: www.example.com/what-is-slug-in-wordpress/ If you add a wordpress post wordpress automatically generates the slug based on your permalinks settings. You can go to Settings -> permalinks and change how slugs are generated. Wordpress sets the slugs are automatically, but its not important to leave it like that because the automatically generated slugs are not perfect or friendly but search engines and humans. The wordpress already created rules to write the slug. the wordpress understand the slug and automatically change the spaces with dashes and allowed only lowercase letters. How to set your post slug? You can set your post's slug w...

What is HTML?

What is HTML? Html is a standard Hypertext Markup Language. Html is a very easy language to create a web pages. Html stands for Hypertext Markup Language. With the html, we can create the web pages.  In the Html, we create structure of web pages. Html contains the series of elements or tags. Html tells the browser how to display content. In the Html, We write the content step by step using different types of Html tags or elements. Some Html tags used like to write "heading", "paragraph", "table", "image" etc. Html tags are not display in the browser, but the html tags help to display content on the browser. In the Html, some tags come in pairs like <h1> and </h1> and some tags are not come in pairs like <img>. The tags are written in angle brackets. Here are one simple example of Html <!DOCTYPE html> <html>  <head>   <title>Page Title</title>  </head>  <body...

Why entrance animation not working in Elementor?

In the elementor plugin, Problem is on the Entrance animation for fadeIn, bounce etc. effects. When i used entrance animation on the image or text, the effect works fine in the edit mode. But when i updated my page and checked output the image or tex disappear on the page. So, In this case, you have check the following points:-     1) Deactivate all the plugins Including Elementor.     2)Start activating again elementor.     3) Now function well the animations.     4)After the problem solved activate the other plugins one by one and checking everything is fine.     5)If you find there is a problem with some plugin maybe that plugin will not be compatible with  Elementor.

How to remove or hide sidebar in pages and show full width page layout?

Image
In this post, I am going to tell about how to hide sidebar in any page and how to show full width page layout. It is very simple to remove sidebar from any page. To remove sidebar follow some steps. 1.Go to pages, select the page from which you want to remove the sidebar. For example, select the home page. 2.Right side of the home page, you will see page attribute option. like this- 3.Click the page attribute option, you will see the drop down list, as shown the above. 4.In the drop down list, you will see template option. 5.In the template option select the full width option instead of default template and update the page. Like this- 6.Now, reload the home page and you will see the sidebar has removed.

How do add product categories in footer?

Image
It is very easy to add product categories in the footer section. Here are some steps to add product categories in the footer. First of  all, we have to create menu, for example:- categories. 1. Go to appearance>menu.           2.Create new menu like categories and click select option. 3.In the menu, product categories option is shown on left side,  like this- 4.If product categories option is not shown in the menu, Go on top right side in the menu and       select screen options. 5.In the screen options, as image shown above, enable the product categories option. Then you will see product categories option on left side. 6.After this, click the product categories option and select categories you want to add in the footer and click to add menu and save menu. 7. Go to appearance>widget. 8.Select the navigation menu and drag & drop it, where you want to add it, like (footer column 2) 9.Cli...

What is difference between GET and POST methods in php?

Both GET and POST methods are used to send information to the server. Both are sending information in different ways. Difference between GET and POST method - GET method Information sent with the GET method is  visible to everyone  (all variable names and values are displayed in the URL). So, the GET method is not secured. GET method doesn't send binary data (images and documents). It sends only ASCII characters. GET method sends information in a limit. The limit is upto 2000 characters.  GET should never be used for sending passwords or other sensitive information. The variables are displayed in the URL, It is possible to bookmark the page. POST method Information sent with the POST method is  invisible to others.  The POST method is secured and developers prefer to use POST method. POST method used to send binary data as well as ASCII characters. Post has  no limits  on the amount of information to send. Post is used for sen...

Why position relative leaves empty space below the div?

When we want to move the div, we give position:relative to the div and moved div to top-bottom, left-right directions like- div{        position: relative;        top: -127px;        right: 50px;   }         But, usually when we give position:relative to the div, the position:relative leaves empty space below the div. So, In this case, we can use a nagative margin-bottom in the relative element that you have moved   like- div{         position: relative;         top: -127px;         right: 50px;        margin-bottom: -127px;   }