Gravity Form Email Validation by Domain

November 17, 2022 (1 year ago)
Functions, PHP, WordPress

Scenario:

Needed to allow ONLY email addresses from a specific client domain to be entered into a Gravity Form.

NOTES: Form ID = 2, Field ID = 9
Used strtoupper to allow domain.com as well as DOMAIN.COM.

Here’s the validation script:

 

Updated Clean Up Functions

February 3, 2022 (2 years ago)
Best Practices, Elementor, Functions, WooCommerce, WordPress

I’m currently using these functions in my new builds to clean up features I don’t use:

The last function removes all block library and WooCommerce styles, as I don’t use the block editor, and style my e-commerce pages using Elementor.

 

Display ACF repeater field

August 30, 2021 (3 years ago)
Elementor, PHP, WordPress

Advanced Custom Fields Repeaters are infinitely useful, but notoriously hard to display. Many plugins and page builders that allow ACF fields don’t support repeaters.

Faced with having to install and support a reasonably complex plugin only for this one feature, I wrote a shortcode to simply display the fields. It’s pretty simple, and this repeater only has one field.

To display this repeater in Elementor, use the shortcode widget, and enter: [show-required]
It can also be used anywhere else shortcodes are allowed.

WordPress ScrollTo Hash

October 31, 2017 (6 years ago)
JS, WordPress

I needed to pass a hash, and scroll to the matching anchor on a new page.

Not as easy as it sounds in WordPress. (Pretty permalinks make it not work.)

After much testing and research, here’s the solution that worked best:

I added the “-150” after the offset to show the header above the anchor.

WooCommerce – Conditional Ship to a Different Address Selection

October 31, 2017 (6 years ago)
Functions, JS, WooCommerce, WordPress

The scenario is this:

The site has multiple shipping methods (multiple client locations, and the option to ship to “Other”.)

I wanted to show the address panel if “Other” location was chosen, and hide the “Ship to Another Location”  option heading on the shipping page if a client location was chosen.

None of this was strictly necessary, but it makes for a smoother customer experience.

This went into my functions.php file.

Then, this is the hide_ship_to.js script file. (uploaded to the theme directory)

 

Change the Text of Reset Password Email

September 25, 2016 (7 years ago)
Functions, PHP, WordPress

Send a custom message to users who request a password re-set:

 

Remove WP Version Number

September 23, 2016 (7 years ago)
Best Practices, Functions, WordPress

Prevent robot scrapers from easily finding out which version of WordPress you’re running.

Not a substitute for keeping WP updated, but a handy fallback for clients who may not.

 

List all Posts

August 4, 2016 (8 years ago)
WordPress

Outputs a single list of all your posts.

Thanks, Mickey! (Edited a bit for simplicity)

Adding Content to the Admin Edit Screen

October 30, 2015 (8 years ago)
Functions, WordPress

When creating custom post types, you often need custom fields for them. In the past, your options were “normal” or “side” with priorities. Depending on what else is displayed on your edit screen, these boxes could vary in where they appeared.

And sometimes you just need to add a comment or note to the edit pages.

Good News! We now have new hooks to place them precisely:

Here’s an article that explains the usage: https://make.wordpress.org/core/2012/12/01/more-hooks-on-the-edit-screen/

 

Append Item to Nav Menu

July 8, 2015 (9 years ago)
Functions, WordPress

Programmatically add an item to any menu that is called with wp_nav_menu.

Thanks, Micah Wood! https://gist.github.com/wpscholar/1249995

Next »