Plugin Downgrade Script
We recently had a cause to write a script in the event a customer wants to downgrade a plugin. Use this script in your custom plugin to prevent issues....
We recently had a cause to write a script in the event a customer wants to downgrade a plugin. Use this script in your custom plugin to prevent issues....
We created a json array keyed to the credit card decline code to add to your options table (or wherever). We added an action column that suits our purposes. You may wish to ignore or change. This is not guaranteed accurate or exhaustive as there is no legal standard. But it's a great start. Feel free to email us if you find errors or uncover worthwhile additions....
When exporting Gravity Forms entries, would you like for the form fields you added to be selected by default? Here is a snippet of javascript that does the trick. ...
The row height of a Wordpress list table shows a lot of empty space so that the row actions (Edit, Quick Edit, Trash) can show on hover. Here is a snippet of CSS to reduce the height of the row until the user hovers over it....
Sending a notification when you update a Gravity Forms entry is fairly simple but you'll need to write some custom code. Modify the following example to suit your needs and place in your theme's functions.php file....
My client wanted to conditionally show a Woocommerce payment gateway if all the products in the cart met specific criteria. I had to iterate through the cart contents and examine the specific post meta for each item. Then determine whether to remove the gateway from the allowed gateways queue....
Recently I was asked to migrate a site to a Siteground server. The client already had an SSL certificate purchased through GoDaddy. So I needed to export the existing Godaddy SSL Certificate and import it to the Siteground website. Here are the steps:...
Google Search Console considers a url with a trailing slash as different from the same url without the trailing slash. Therefore, all links to your site (including internal links) should have the trailing slash or not according to your setting in Settings>Permalinks. This post will show you how to clean up an existing site by adding a trailing slash to urls in your content....
The Storefront theme adds a navigation bar to mobile devices with shortcuts to account, cart and search. You can adjust the position of the search input field with a little CSS...
Add the following script using the wp_footer hook or into an existing javascript .js file to advance the cursor when the enter key is pressed....
Would you like to prevent more spam by filtering your Gravity Forms textarea fields? Here is a code snippet you can put in your functions.php file. It checks for blacklisted words or phrases in the textarea fields. If found, the form will be invalidated and not submit....
The following is based upon codex instructions for creating a child theme. It is specifically a shortcut to create a child theme for Wordpress theme Twenty Twenty....