MemberPress: Redirect Users to a Specific Page Depending on a Custom Field Value
This code snippet adds a custom redirection after registration based on the value of a custom…
WooCommerce Local Pickup Date Field | WooCommerce Pickup Date
Adds a date picker to the checkout page when "Local Pickup" is selected. The selected pickup…
Alex Anzalone
Player profile for alex anzalone
Add Donation Receipt Opt Out Checkbox
In this function we register a new donation field with a key of `receipt_opt_out`. If the…
Change Campaign Rewrite To Not Use With Front
Customizes the definition of the campaign post type, setting the with_front option to false.
Hide social login from checkout
Good for when you are using it elsewhere on your website and do not want it…
Expire pass when counter used up
This plugin makes All Access passes expire at the moment their download counter is used up.
Remove Post Title from Yoast Breadcrumb
/* Remove Post Title from Yoast Breadcrumb */ add_filter('wpseo_breadcrumb_single_link', 'remove_breadcrumb_title' ); function remove_breadcrumb_title( $link_output) { if(strpos(…
Add a video field to the sign-up form
// Add the video field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_video_uploader'); function wcv_video_uploader( ){ //…
Display a message after the 1st paragraph of posts
Thank you for reading this post, don't forget to subscribe!
Custom Social Share Email Subject
If you wish to modify the email subject text when clicking the social share email icon…
Basic WP escaping functions
// ❌ Don't use _e(), __(), _x() etc. to output data // ✅ Use the escaped…
Filter the message generated for admin confirmation | Quick Event Manager
add_filter('qem_registration_email_message',,,3); This filters allows you to adjust the confirmation email to the admin / organiser (…