Send Donation Notification For Pending Offline Donations
Sends a notification to admin if the donation is pending AND it was made in offline…
Change Currency Format By Locale
This snippet below shows how to change the currency format for each language.
Display Vendor-Submitted data as Restricted Content.
Automatically output content submitted by FES Vendors wrapped in the [edd_restrict] shortcode.
Untitled Snippet
increase upload memory
WC Product Bundle Integration Fix for MOQ incorrectly enforced on product bundle child items
/** * Fix 1: Product page — prevent WWPP from overriding the quantity input args for…
Add Vendor Ratings / Feedback to Product Page
add_action('woocommerce_before_add_to_cart_form','vendor_feedback_product_page'); function vendor_feedback_product_page() { $vendor_id = get_the_author_meta('ID'); $vendor_shop = urldecode( get_query_var( 'vendor_shop' ) ); if (…
home page (chatgpt)
https://www.figma.com/make/T8Dp7RmUzWGnSIq95DqPbW/Website-Design--Copy-?t=AWziUKcjDhGlN9lr-6
Resetting the Vendor & Pending Vendor Roles
add_filter('woocommerce_login_redirect', 'redo_roles', 10, 2); function redo_roles() { remove_role( 'pending_vendor' ); add_role( 'pending_vendor', __( 'Pending Vendor', 'wcvendors'…
List Media Information
Add media file format, dimensions and size columns.
Set Default Tax Class to 'Zero rate' on WC Vendors Pro Add Product Form
/** * Set Default Tax Class to 'Zero rate' on WC Vendors Pro Add Product Form…
Untitled Snippet
@ini_set( 'upload_max_size' , '120M' ); @ini_set( 'post_max_size', '120M'); @ini_set( 'max_execution_time', '300' );
Change Add Product button URL
Change Add Product button URL
Hotfix: Remove Stripe Statement Descriptor
In EDD 3.2.8, Easy Digital Downloads changed how Statement Descriptors are used with Stripe Payments to…