Change Donation Cancellation Url

Change the URL that donors are returned to when they cancel their donation.

Remove Organisation Field

Remove "organisation" from the profile form.

MemberPress: Exclude Protected Posts from Search Results

Removes any posts from the search results that the current user (or guest) does not have…

Disable Automatic Updates Emails (copy)

Stop getting emails about automatic updates on your WordPress site.

Alter Payment List Quick Actions

Remove the 'Delete' option from the Payment List Quick Action

Modify User Role on Checkout

Modify the user role that is given to users that register during checkout

Change label of CSV header, and removing others(Export Totals to CSV)

This snippet will change the label of CSV header, and remove the others(Export Totals to CSV)

Custom Tab Order For Dashboard

The following code will allow you to change the order that the front end dashboard is…

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 (…

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'…

Disable Gutenberg Editor (use Classic Editor)

add_filter('gutenberg_can_edit_post', '__return_false', 5); add_filter('use_block_editor_for_post', '__return_false', 5);

<10

Set the ranges for Calendar View | Display Eventbrite Events

The following code snippet filters the valid ranges for the next/prev keys of the calendar views…

WordPress Content Filter: Removing Tags for Enhanced Display Control

The purpose of this code snippet is to filter out tags and their contents from the…

<10
1 98 99 100 101 102 113