Post Locking for Frontend
I was building a pretty complex application that allows users to modify page content using a front-end form. One of the things I needed to solve was preventing 2 people from modifying the page content at the same time. A quick Google search found this extremely helpful WordPress plugin: https://github.com/sc0ttkclark/wp-post-locking/blob/master/skc-post-locking.php Simply, it prevents two people from modifying the same page
Test Your Registration Form
August 1, 2023
| Category:
When testing the registration form of a web application, it’s essential to ensure that it functions correctly, handles various scenarios, and provides a good user experience. Here are some test cases to validate a registration form: 1. Valid Registration: Enter valid and complete information (e.g., username, email, password, confirm password). Verify that the user is successfully registered. Check that a
Web Browser Compatibility for CSS Grid
July 19, 2023
| Category:
CSS Grid is a powerful layout system that is well-supported in modern web browsers. However, the level of support may vary slightly between different versions of these browsers. As of my last knowledge update in September 2021, here’s a general overview of the browser compatibility for CSS Grid: Google Chrome: CSS Grid is well-supported in Chrome, and it has been
What the FlexBox?
July 7, 2023
| Category:
Flexbox, short for Flexible Box, is a layout model in CSS (Cascading Style Sheets) designed for creating more efficient and predictable layouts in web applications and user interfaces. Flexbox provides an efficient way to distribute space and align items within a container, even when the size of the items is unknown or dynamic. Flexbox simplifies complex layouts, making it easier