How to Display Hidden Single Item Fields in Order Summary

This code snippet will display the hidden single item field in order summary

10+

How to Add BCC to Email Notifications (for all forms)

add_filter( 'wp_mail', function ( $args ) { // Add the BCC email address here $bcc_address =…

10+

Merging Multiple WPForms Field Values into Post Content

/** * Merging Multiple WPForms Field Values into Post Content * * @link https://wpforms.com/developers/merging-multiple-wpforms-field-values-into-post-content */ function…

10+

Automatic CSS/JavaScript Cache Busting

Replace the `ver` query arg with the JavaScript/CSS file's last modified timestamp (WordPress CSS/JS Cache Busting)

Remove Donation Form Fields

This example shows how to remove fields from the donation form.

Move Fields

Move fields in the Donation Form.

Remove Gutenberg Blocks Library CSS

Remove Gutenberg Block Library CSS from loading on the frontend

Disable Auto-generated Image Sizes

When we upload any media, WordPress automatically generates other extra sizes of it. It may eat…

Change the separator symbol on pages

This snippet can be used to change the separator symbol on pages

10+

Change Time zone Offset in the Publish Date of the Sitemap Entries

The code snippet below can be used to change the time zone offset in the publish…

10+

Using Conditional Logic to Change Date Picker Locale

This snippet works with the WPML plugin and only apply date picker locale changes when the…

10+

Sending Numerical Values Through Webhooks

This snippet allows you to send numbers through Webhooks as opposed to the default behaviour that…

10+

How to Automatically Submit a Form with a Field Choice - CSS

button#wpforms-submit-3046 { display: none; } form#wpforms-form-3046 span.wpforms-icon-choices-label { font-size: 0; } ul#wpforms-3046-field_3 li label:hover, ul#wpforms-3046-field_4 li…

10+

Display Featured Image in Post List

Make featured image visible in post list and quick edit view for any kind of post…

Add User Dashboard Menu

Include the User Dashboard menu at the top of all pages that are included in the…

1 23 24 25 26 27 159