The issue happens for me while I started to open MySQL in XAMP and it is opening but suddenly shuting down . The problem might not be related to wordpress but the files in the xampp folder. Re arranging the files make the database disappear so I have to start implement this from scratch.I don’t… Continue reading How to solve “Error: MySQL shutdown unexpectedly”? (XAMPP issue)
Category: Wordpress
How to Implement Godaddy SSL on Apache Server?
How SSL/TLS Secures Communication Over the Internet SSL (Secure Sockets Layer) is a protocol used to secure communication between a client and a server over the Internet. Here’s how SSL works: The SSL/TLS handshake: The client and server establish a secure connection by performing a handshake. During the handshake, they agree on a protocol version,… Continue reading How to Implement Godaddy SSL on Apache Server?
Advantages of WooCommerce Compared to other shop systems available on the market.
WooCommerce is the leading and free eCommerce shop system for the WordPress universe. With a single click, this plugin turns your WordPress blog into a fully equipped online shop. WooCommerce stands out above all through its simplicity and versatility. Compared to other shop systems available on the market, WooCommerce has the following advantages: A high scalability and… Continue reading Advantages of WooCommerce Compared to other shop systems available on the market.
Difference between “+” and “~” in css.
You may have noticed that while we are using CSS in our html , we use “+” and “~” symbols to select another div on hovering on a particular div. The reason why we are using them is because on hovering over one div we have to change or hover contents over another div. But… Continue reading Difference between “+” and “~” in css.
Append options to a select tag from an API response
Here is an example to append options to a select tag from an API response in jquery foreach This can be also done by foreach on php but sometimes we may need js or jquery to append data upon some conditions.
How to do these follwing things using CSS
How to change the dropdown arrow icon of select box using background image in css? 2. How to change the placeholder color in firefox browser? 3. How to reduce the column width(which is display flex column) in css?
How to export WordPress posts to Microsoft Excel
First, navigate to Tools › Export and choose the type of data that you want to export. Data is divided into various article types by WordPress, including posts, pages, WooCommerce products, and real estate properties. By choosing it here, you can export any custom post category or taxonomy. Go to Microsoft Excel > Blank Workbook… Continue reading How to export WordPress posts to Microsoft Excel
Add animation to a html content in JavaScript
Some times situation may arise where we have to add animation to HTML contents using JavaScript. One situation is that if we have to change the display property of content to block and none ,we have to write script to it. What we will do if we need to add an animation while having change… Continue reading Add animation to a html content in JavaScript
Change the display block : none to block and vice versa.
While designing a web page especially the header it is important to know to change the content to none to block and vice versa by using Java Script. It will be very helpful when we develop a responsive NavBar. The java script code used for this is as follows:- function toggleFunction() { … Continue reading Change the display block : none to block and vice versa.
Add SVG images to the WordPress Media
WordPress support a number of image file types including .jpg, .jpeg, .png, and .gif . But it does not support SVG file format images to upload into the WordPress media by default . So what if we need to upload the SVG images into the WordPress. For this what we have to do is to add a PHP… Continue reading Add SVG images to the WordPress Media