Augmented Reality in WordPress

Augmented Reality is an excellent WordPress feature for web development. This technology allows users to test and try the products virtually. For example, an online store selling sunglasses can use Augmented Reality to help users check and try whether the sunglasses suit them. It is a great way to elevate the user experience and customer… Continue reading Augmented Reality in WordPress

WP Dark Mode plugin in WordPress

Dark mode, now common across many apps and websites, reduces eye strain with a black background and lighter text. WordPress supports this feature through themes and plugins, making it easy to apply and improve user experience. First of all, install and activate the WP Dark Mode plugin. Upon activation, go to the Settings » WP Dark Mode page in… Continue reading WP Dark Mode plugin in WordPress

How to paste ssh key in GCP, generated by puttygen?

To paste an SSH key generated by PuTTYgen into Google Cloud Platform (GCP), follow these steps: Generate the SSH key using PuTTYgen: Open PuTTYgen. Click on the “Generate” button. Move the mouse around to generate randomness. Once the key is generated, you will see the public key in the top box. Convert the PuTTYgen key… Continue reading How to paste ssh key in GCP, generated by puttygen?

Issues Accommodating Multiple Tabs on a Single Page and Resolution of Tab Malfunctions Using the Tabby Plugin

Issue: The issues observed include incomplete content display and glitches upon refreshing the page. The user suspects that these problems might be related to an overload of scripts on the page. Issue Identified: The malfunctions were caused by multiple tabs having identical names on the same page. To effectively include multiple tabs on the same… Continue reading Issues Accommodating Multiple Tabs on a Single Page and Resolution of Tab Malfunctions Using the Tabby Plugin

Displaying Custom Product Meta in WooCommerce

This function displays custom meta values for a WooCommerce product in a table format using a WordPress shortcode. It only displays rows for non-empty values. function display_custom_meta() {     if (is_product()) {         global $post;         $product_id = $post->ID;         $product = wc_get_product($product_id);    … Continue reading Displaying Custom Product Meta in WooCommerce

A custom post widget plugin with category filter in WordPress

A custom WordPress plugin that creates a custom post widget with a category filter, allowing users to display a specified number of posts and filter them by category. It uses a shortcode to generate a list of posts with a dropdown menu for category selection, dynamically updating the displayed posts based on the selected category.… Continue reading A custom post widget plugin with category filter in WordPress

Develop a Dynamic Countdown Timer from scratch

HTML Structure First, create the basic structure in HTML. This includes creating div elements for displaying the countdown timer. <!DOCTYPE html> <html lang=”en”> <head>     <meta charset=”UTF-8″>     <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>     <title>Dynamic Countdown Timer</title>     <style>         .countdown-container {             display:… Continue reading Develop a Dynamic Countdown Timer from scratch

Enhancing UI with IntersectionObserver in JavaScript

The IntersectionObserver API in JavaScript provides a way to asynchronously observe changes in the intersection of a target element with an ancestor element or with a top-level document’s viewport. This API is useful for implementing functionalities such as lazy-loading images, infinite scrolling, or triggering animations when elements come into view. How IntersectionObserver Works Create an… Continue reading Enhancing UI with IntersectionObserver in JavaScript

Uses of WP activity log plugin

The WP Activity Log plugin is a tool designed for WordPress websites to keep track of user and site activities. It’s particularly useful for site administrators and owners who want to monitor changes, user logins, and other important events happening on their WordPress site. Here are some key features commonly found in WP Activity Log… Continue reading Uses of WP activity log plugin