Change Currency Format By Locale

This snippet below shows how to change the currency format for each language.

Cortex Image Meta API

/** * Cortex Image Meta API - REST Endpoints for WordPress Image Optimization * v1.0 -…

<10

Allow Subscriptions Product on BOGO and Add Product Search Field

add_filter( 'acfw_product_search_allowed_types' , 'acfw_search_add_support_for_subscription_products' ); function acfw_search_add_support_for_subscription_products( $product_types ) { $product_types[] = 'subscription'; $product_types[] = 'variable-subscription';…

Disable Update Notifications

Disable all wordpress update notifications

Hagai Maidenberg
<10

Sample Email Template Tag

This is an example of how to register a new email template tag for EDD.

AffiliateWP - Force Query String Format for Affiliate Deep Links

Fixes redirect loops caused by AffiliateWP's pretty deep link format (/page/ref/username/) conflicting with WooCommerce or custom…

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 ) {…

login redirect changed from default my account page to home page

/** * WooCommerce My Account Page login Redirect */ add_action( 'wp_login', 'owp_redirect_after_logout' ); function owp_redirect_after_logout() {…

How to Disable Comments on Event Posts? | Quick Event Manager

This code snippet is designed to automatically disable comments for event post types generated via the…

Event URL (Simple Usage) | Display Eventbrite Events

This filter allows you to adjust the event URL. This is primarily so you can add…

1 126 127 128 129 130 216