PHP - Custom login
// === CUSTOM LOGIN PAGE === add_action('login_enqueue_scripts', function () { echo ' '; }); // ===…
Glass Shards CSS
.glass-shard { /* Glass effect */ background: rgba(255, 255, 255, 0.18); backdrop-filter: blur(9.8px); -webkit-backdrop-filter: blur(9.8px); box-shadow:…
WPCODE_DIR_AC_RAPI - REST API Enhancements for WPCode Snippets Sync
* Description: Exposes wpcode_snippets_sync CPT fields via REST API for WhaleSync * Location: Run Everywhere *…
GravityWiz_DateMergeTags - Gravity Wiz // Gravity Forms // Format Date Merge Tags
* Adds merge tag modifiers for formatting date merge tags using PHP Date Formats. * *…
Disable Password Reset
For smaller sites where password resets can be managed manually, disabling automatic user password reset adds…
Replace Menu Icon
Replace the standard menu icon in Easy Digital Downloads with an icon from Dashicons
Force Minimum Password Length at Checkout
Force a minimum password length when a customer creates an account at checkout
Add a document file upload
// Add the document field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_doc_uploader'); function wcv_doc_uploader( ){ if…
Enable product images in vendor order email notifications
add_filter( 'wcvendors_vendor_order_items_args', 'wcv_enable_product_image_vendor_order_email' ); function wcv_enable_product_image_vendor_order_email( $order_item_args ){ $order_item_args['show_image'] = true; return $order_item_args; }
On Browsing EDD Products
This snippet targets window shoppers and encourages them to add more products to their carts. This…
Tweaking the Calendar Language Localisation | Display Eventbrite Events
The calendar will attempt to localize the language based on the WordPress website setting. However, the…