MemebrPress: Send MemberPress Welcome Email Only When Transaction Is Completed

The code snippet will allow the global welcome email to be triggered only following the successful…

تغيير عمله

/** * Change a currency symbol */ add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency )…

Download Column Thumbnail

Render a new post column featuring the download thumbnail.

Variable Pricing License Expiration

Set the expiration time for licenses per price option

Remove Unused JS

/** * We will Dequeue the jQuery UI script as example. * * Hooked to the…

<10

Set featured image aspect ratio

Used for featured image in query loop or any other image the class is applied to

Add an image filed to the sign up form

// Add the image field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_image_uploader'); function wcv_image_uploader( ){ if…

Disable sold by link on checkout page

/** * Disable the sold by link on the checkout page */ add_filter('wcvendors_sold_by_link', 'wcv_disable_checkout_sold_by_link', 10, 2);…

Add duplicate link to admin bar menu

Extend the WPCode duplicate snippet (https://library.wpcode.com/snippet/7oqnzxow/) with an admin bar menu item. The duplicate snippet needs…

<10
1 44 45 46 47 48 124