.
WORDPRESS PLUGINS ABOUT

Author Archive

Stopping a WordPress Plugin from updating

Posted on: April 17th, 2023 by Stuart

To stop a WordPress plugin from asking to be updated you need to add the following code in your functions.php file. It is very easy to do and shouldn’t take long at all.The main filename of a plugin is often the same as the folder name. This really only should be used if you REALLY […]

Creating WordPress Custom Fields

Posted on: April 17th, 2023 by Stuart

Sometimes you need to add some extra functionality to the backend of WordPress, whether to add a button in the main Dashboard page, an extra menu option in the main sidebar menu or even a whole new section in there. When I tried looking for a solution to add a button on the Dashboard page […]

How to fix PHP8 fatal error for WordPress Plugins or Functions.php

Posted on: March 6th, 2023 by Stuart

If you are like me and after upgrading your PHP to version 8 you started receiving the following error, then you are in the right place to fix it. You might as well have received a code 500 in your browser from this error also. This error signifies that there is most likely a hook […]

Hiding a Shipping option for certain products or categories

Posted on: February 13th, 2023 by Stuart

Sometimes you might need to hide one or more shipping option(s) for a particular product or category. This code will do this, all you need to do is add it to your themes Functions.php file. In this example, I am hiding the shipping option called “Free Shipping“. You can get this from the database table […]

How to Find & Fix your Hacked Website

Posted on: January 9th, 2023 by Stuart

If you think or know your website or Web App has been hacked here are some useful commands to find out more.For this document, I will assume you have a dedicated server or VPS with an SSH connection available. Connect to your server using SSH and in turn, enter the following commands. If any result […]

WordPress & WooCommerce Plugin Platform

Posted on: November 19th, 2022 by Stuart

We have created a common platform that all our WordPress plugins use and share segments of code to reduce database lookups and calculations.This in turn increases the website speed, reduces bandwidth expenses and increases the user experience.This page will explain the concept and how we are using the platform including the problems of individual plugins […]

Debug WordPress Scripts

Posted on: October 29th, 2022 by Stuart

Let’s say you have been looking at the many JavaScript scripts that WP loads and you would like to stop some from loading to help speed up your site. Now, this obviously could cause your site to not perform how it should, so it would be handy to see any errors when you stop a […]

Load JavaScript on Desktops only

Posted on: October 24th, 2022 by Stuart

The code below will only load these JS files if the screen is larger than 480px.

Message Manager Available Locations

Posted on: July 1st, 2022 by Stuart

The Message Manager WordPress plugin allows you easily control messages displayed on your website, whether you wish to display a “Sale Price” on some of your e-commerce products, a banner message on some category pages or a Call to Action button in your basket to add further products. WordPress have created a list of standard […]

How to get and update WooCommerce Regular and Sale prices with or without a post ID

Posted on: June 22nd, 2022 by Stuart

If you simply just want to get to the commands, that’s cool here are the links to take you right there. If you prefer to read what the commands do, keep reading… Display Regular and Sale prices on the Product page Display Regular and Sale prices within the Functions.php file or plugin Updating WooCommerce Price […]

^