Note Orders

add_filter( 'manage_edit-shop_order_columns', 'custom_shop_order_column', 90 ); function custom_shop_order_column( $columns ) { $ordered_columns = array(); foreach( $columns as…

WP Simple Pay: Programmatically Access Payment Metadata After Payment

Programmatically access metadata (such as custom field values) associated with a payment record after a subscription…

FES Registration Form Redirect

Set custom redirect URLs for those who just registered to become vendors.

Maintain+ Footer Credit

jQuery("footer").append(" Site managed by Maintain+ ")

How to Build a Profile Page Using Post Submissions

With this snippet and the Post Submissions addon, you can create professional author profiles that automatically…

<10

User Switching

Easily switch to a Customer when using the User Switching plugin

WP Simple Pay: Custom Webhook Handling Example

An example of handling the `coupon.updated` webhook event. For a full list of available events see:…

Completely Disable Comments

add_action('admin_init', function () { // Redirect any user trying to access comments page global $pagenow; if…

<10

Real-time validation for restricting numbers from Single Line Text field

/** * Dynamically prevent numbers from being entered on single line text fields * * @link…

<10

Yoast SEO

Integration with Yoast SEO with WC Vendors

Enable Full WP_Editor on Product Fields

add_filter( 'wcv_product_description_editor_settings', 'wcv_full_editor' ); add_filter( 'wcv_product_short_description_editor_settings', 'wcv_full_editor' ); function wcv_full_editor( $settings ){ $settings['teeny'] = false; return…

How To Show Last Modified Date On Blog Post Instead Of Published Date in WordPress

If you want to display the last modified date on your blog post without using a…

Current Year Shortcode

Adding the option to use the current year [year] shortcode on your website on any website,…

1 17 18 19 20 21 78