Posted on August 29, 2024 Posted Under Just Blogging
I’m thrilled to announce the launch of Cookie Control, a powerful Chrome and Firefox extension that simplifies cookie management for developers. But before diving into the details, let me share the story behind the creation of this time-saving tool. 📖 The Story While working on a recent project that involved implementing authentication in a React […]
Posted on August 29, 2024 Posted Under Just Blogging
We’re excited to introduce Cookie Control, a powerful browser extension available for both Chrome and Firefox! Whether you’re a web developer, WordPress developer, Shopify developer, or simply a privacy-conscious user, Cookie Control is designed to streamline cookie management. This must-have tool is now live on the Chrome Web Store and Firefox Add-ons platform. Simplify your […]
Posted on March 28, 2024 Posted Under Wordpress, Wordpress Security
When working with SQL database queries in WordPress, it’s essential to sanitize input data to prevent SQL injection vulnerabilities. WordPress provides several functions and methods for sanitizing database query variables. Here’s a list of commonly used ones: Using these sanitization functions and methods appropriately in your WordPress code ensures that input data is properly sanitized […]
Posted on March 15, 2024 Posted Under Just Blogging
Securing the WordPress REST API developer endpoint is crucial to prevent unauthorized access and potential security vulnerabilities. The developer endpoint in the WordPress REST API is typically used for debugging and development purposes, and it’s important to restrict access to it in a production environment. Here are some steps you can take to secure the […]
Posted on March 15, 2024 Posted Under ChatGPT, Tools
Use chatbot more accurately and in depth specific details
Posted on December 29, 2023 Posted Under Wordpress
When hiring a WordPress freelancer, it’s important to consider their skills, experience, portfolio, and references. Here’s a checklist to guide you through the process: Skills and Experience Portfolio and References By evaluating these aspects, you can make an informed decision when hiring a WordPress freelancer.
Posted on December 28, 2023 Posted Under Wordpress, Wordpress Freelancer
Below are WordPress code examples to use wp_footer WordPress hook to add a custom script or HTML before closing of body tags. This function helps to call Google Analytics or any third-party code down below before closing the body tags. It is recommended to add these custom functions inside the child theme to avoid code […]
Posted on December 27, 2023 Posted Under Wordpress Freelancer
In the dynamic world of freelance WordPress development, having the right set of tools can significantly enhance productivity and streamline workflows. As a WordPress freelancer, leveraging cutting-edge tools can help you stay ahead of the curve, deliver high-quality projects, and manage your business efficiently. In this comprehensive guide, we’ll explore 15 must-have tools for every […]
Posted on December 27, 2023 Posted Under Wordpress Freelancer
In the ever-evolving landscape of digital entrepreneurship, WordPress freelancers play a pivotal role in helping businesses establish and maintain their online presence. As a WordPress freelancer, mastering a diverse set of skills is crucial for success in this competitive field. Whether you’re a seasoned professional or just starting your freelancing journey, honing these ten essential […]
Posted on December 19, 2023 Posted Under Angular
Sometimes some projects require a specific angular version to work with other used project tools as mentioned in package.json, So follow the below steps to Install a specific angular-cli version. Remove currently installed angular Install specific angular-cli
Posted on December 6, 2023 Posted Under Wordpress
For expert developers working with WordPress and PHP, following best practices is crucial for building secure, scalable, and maintainable code. Here are some recommended best practices: Use Child Themes When customizing a theme, create a child theme instead of modifying the original theme files. This ensures that your changes are not lost when the theme […]
Posted on September 21, 2023 Posted Under Development
I am working on multiple projects as usual and tried the normal solution to use node version manager via the command nvm ls to list available versions in the window nvm ls and then nvm use targeted version via using nvm use ***** nvm use 14.21.3 But this is not working as expected in the […]
Posted on March 19, 2023 Posted Under Development
Many times due to project or required platform requirements we have to use a specific version of nodejs. Here you can find list of node versions https://nodejs.org/en/download/releases So below is an example where you can install and use a specific nodejs version One way is to use NVM, the Node Version Manager. Use the following […]
Posted on July 13, 2019 Posted Under Just Blogging
Here is way to update node/ angular/ react project’s npm packages to latest version automatically using npm command npm-check-updates is a utility that automatically update npm package.json with used package latest version of all dependencies see https://www.npmjs.org/package/npm-check-updates npm install -g npm-check-updatesncu -unpm install A slightly less intrusive (avoids a global install) way of doing this […]
Posted on August 26, 2017 Posted Under Just Blogging
This is the new best way to upgrade npm on Windows. Follow below steps Go to Window Type Run PowerShell and open as Administrator First: Run command -> Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force Secondly: npm install -g npm-windows-upgrade and then npm-windows-upgrade Note: Do not run npm i -g npm. Instead use npm-windows-upgrade to update npm going forward. Also if […]
Posted on November 28, 2015 Posted Under Wordpress, Wordpress Freelancer
Here is code snippet to display selected category names of custom post type in wordpress. To get the categories of a custom post type you have call get_the_terms() and setup the registered category name like this <?php $terms = get_the_terms( $post->ID , ‘myposttype_category’ ); foreach ( $terms as $term ) { echo $term->name; } ?>