Changing the WordPress Login Logo URL
function custom_login_logo_url() { return home_url(); // Or your desired URL } add_filter( 'login_headerurl', 'custom_login_logo_url' );
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. * *…
Waste Licence
Waste carriers affiliation badge
product data tabs
/** * Rename product data tabs */ add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 ); function woo_rename_tabs( $tabs )…
Force Minimum Password Length in Profile Editor
Verify password minimum length in the EDD profile editor.
Give Subscription on Purchase
This snippet will provide customers with one year of access to subscription content when they make…
Add Custom Taxonomy to Woocommerce Single Product Page
add_action( 'woocommerce_product_meta_end', 'wcv_add_brands_single_product' ); function wcv_add_brands_single_product() { global $product; $taxonomy = 'wcv_brands'; // The custom taxonomy…
Add CSS classes to apply for vendor label
/** * Add CSS class to apply for vendor label in a registration * * @param…
After Checkout Event in EDD
This snippet would stop sending cart abandonment campaigns to your push subscribers as the purchase goal…
Class Clashes | Display Eventbrite Events
We have discovered conflicts between certain themes and classes, such as the .free class conflicting with…
Remove Unwanted Events | Display Eventbrite Events
Sometimes it is simplest to resort to code if you want to remove something from the…