Gravity Forms Export Entries Default Selections
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. ...
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....
If your theme adds 'Powered by Wordpress' in the footer (Twenty Twenty does...), you may remove it by creating a footer.php file in your child theme. ...
We had a client using the free version of Envira Gallery who wanted a custom gallery display. Our template would display galleries based upon a category and allow for a cover photo as well. To accomplish this, we had added some Advanced Custom Fields to display on the Envira Gallery add or edit post screen. It worked great. Then we upgraded to a paid version of Envira to get the Instagram addon. At that point our ACF metabox disappeared. It just stopped showing. It turns out the Envira Gallery has a function to ‘help you’ remove unwanted metaboxes. Unfortunately,...