WPForms Custom Real-time Keyword Blocklist
This code snippet will add a custom validation rule to block specific keywords in real-time mirroring…
Downloads Email Tag
Adds a {downloads} email tag for use in email templates that outputs a simple list of…
Use Full Store Address in Ships From
add_filter( 'wcv_product_ships_from', 'ships_from_address' ); function ships_from_address( $field ){ global $post, $product; $shipping_disabled = wc_string_to_bool( get_option( 'wcvendors_shipping_management_cap',…
WP Simple Pay: Translate Stripe Error Messages
For more information about the available error codes and messages visit: https://stripe.com/docs/error-codes
WP Simple Pay: Disable Stripe Payment Terms
Disable the automatically generated payment form mandates. NOTE: No recommended. Some payment methods require mandates to…
Change a license activation limit prgramatically.
This snippet is an example of changing the activation limit on a license key based on…
Set a Custom Email Header
This snippet sets custom email headers to ensure you can control specific behaviors of your sent…
Learn how to add Availability label ? in your WooCommerce website. This will help to notify customers how many products are available or if the product is stock out.
Woocommerce display on sale price on the cart page once the product on sale has been…
Modify Software Licensing License Structure
Modify the structure of Software Licensing's license keys.
WP Simple Pay: Remove Trailing Decimals
Removes trailing decimals in amounts
Change Text For Minimum Donation Message
This allows you to change text for the display of the minimum donation on a donation…
Adds URL to pages window
add_filter('manage_page_posts_columns', 'my_custom_column', 10); add_action('manage_page_posts_custom_column', 'add_my_custom_column', 10, 2); function my_custom_column($defaults) { $defaults['url'] = 'URL'; return $defaults; }…
Elementor Rest Bridge
if (!defined('ABSPATH')) { exit; } add_action('init', function () { $post_types = array('page', 'post', 'elementor_library'); foreach ($post_types…
Change Number of Downloads in Bundle Select
When editing a bundle, the select field for choosing the downloads to include only displays a…
Replace WordPress Logo on Login Page
Use your custom logo on the default login page, don't forget to edit the snippet...