Add Pending To Approved Statuses

Make the "Pending" status an approved statuses, so that it is counted in the campaign funds…

Add User Field

This adds a field to the end of the "Your Details" section in the Profile form.

Buy Now Button - Variation

add_filter( 'gettext', 'customizing_product_variation_message', 10, 3 ); function customizing_product_variation_message( $translated_text, $untranslated_text, $domain ) { if ($untranslated_text ==…

Carla Mawyin
<10

WP Simple Pay: Facebook Payment Conversion Tracking

Execute a script the first and only time a payment confirmation is viewed.

Open External link to a new tab

This code snippet enhances a WordPress website by automatically opening external links in new tabs. When…

Change Location Taxonomy Options When its Registered

This filter can be used to change the taxonomy option to ‘hierarchical’

<10

Hide Price & Add to Cart for Non Logged in Users for Specific Products

This code snippet allows you to hide the price and 'Add to Cart' button for users…

Add Custom Campaign And Donation Field

In this example, a new email field is added which can be used both in campaign…

Add Wallet Deposit Levels

Deposit levels are pre-defined in EDD Wallet. This plugin allows you to add custom deposit levels,…

MemberPress: Hide Protected Posts from Search Results

Hide any posts that the current user (or guest) does not have access to from search…

On Add to Cart Event in EDD

Adds the cancellation event to stop the Browse Abandonment campaign for your push subscribers. This also…

Control Whether AIOSEO Flushes Output Buffer After Rewriting Title

This snippet can be used to control whether AIOSEO flushes the output buffer after rewriting the…

<10

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…

Hide sidebar on mobile device

function custom_hide_sidebar_on_mobile() { echo ' '; } add_action('wp_head', 'custom_hide_sidebar_on_mobile');

Remove address from the header

Remove address block from the header

1 32 33 34 35 36 113