WPCode Admin Number of Snippets (copy)

Change the number of snippets displayed in the admin list using a filter.

Add Theme Supports

Reference: https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-support/#opt-in-features

Add column Product type in WooCommerce

Add a column in the product list to differentiate the type of product

Remove tags Contact Form 7

Remove tags from the forms in the frontend

Untitled Snippet

// Disable Gutemberg add_filter( 'use_block_editor_for_post', '__return_false', 10 );

Disable Widgets blocks

//Disable Widgets blocks add_filter( 'use_widgets_block_editor', '__return_false' );

MemberPress: Disable MemberPress Password Lost/Changed Email

Adding this code snippet will disable the MemberPress Password Lost/Changed notification email.

MemberPress: Send “Profile Updated” Admin Notification

The code changes WordPress's functioning to send notifications to the admin when a user modifies their…

MemberPress: Send “Profile Updated” Admin Notification When MemberPress Account Is Updated

Similar to the code snippet here: https://library.wpcode.com/snippet/m5ye1wj2/, this code sends a notification to the admin when…

MemberPress: Send Password Reset Email After Subscription Signup

This code can be used to trigger the reset password email to users automatically after users…

1 126 127 128 129 130 159