Publishing email
Emails the author when their download is published.
Move User Fields Below Account Creation
Move the user fields below the "create an account" fields
Content Restriction Compatibility for Software Licensing
Make the edd_restrict shortcode check if a license is expired before displaying content.
Reverse Receivers
Reverses the receivers for PayPal Adaptive Payments
Custom fields to vendor settings page
add_action('wcvendors_settings_after_paypal', 'pv_add_custom_merchant_id_field'); function pv_add_custom_merchant_id_field() { ?>
Allow WooCommerce Shop Managers to manage vendors
/* Lets Shop Managers edit users with these user roles */ function wcv_allow_shop_manager_role_edit_capabilities( $roles ) {…
Disable Gutenberg Editor (use Classic Editor)
add_filter('gutenberg_can_edit_post', '__return_false', 5); add_filter('use_block_editor_for_post', '__return_false', 5);
Set the ranges for Calendar View | Display Eventbrite Events
The following code snippet filters the valid ranges for the next/prev keys of the calendar views…
WordPress Content Filter: Removing Tags for Enhanced Display Control
The purpose of this code snippet is to filter out tags and their contents from the…
create_folder_and_upload_file
Creating a folder directly inside the WordPress Media Library through code requires understanding that the WordPress…
Title
Describe
Untitled Snippet
name: Update lists on: schedule: - cron: '0 0,12 * * *' # At 00:00 and…