Alert Admin When a Plugin Is Activated
Receive an email notification whenever a plugin is activated in WordPress. Useful for security monitoring, multi-admin…
bypass SSL certificate
bypass ssl - getting errors - fixes that
Add Custom Taxonomy - Multiple Vendor Taxonomy
Allows the vendor to select multiple taxonomies
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( ){ //…
Force product type for all products
// Disable the product type drop down. add_filter('wcv_disable_product_type', function() { return true; } ); /** *…
Add TikTok to the social tab of settings
This will show the setting and it should be saved when saving the form.
Remove Gateway Choice On A Campaign/Donation Page
This shows how you can detect what page/campaign you are on and remove a gateway from…
Filter the Event Title | Display Eventbrite Events
Example, adding Organizer Name to the front of Event Title. (Note this code snippet applies for…
Use the Variation Name instead of Slug within the Product Name detail of Product exports
function custom_woo_ce_get_product_title_attribute_formatting( $format = 'slug', $post_id ) { // Set the format to Attribute Title $format…
Block WP-Admin Area from Non-Administrators
Prevent users who are not administrators from accessing the wp-admin area.
Defining Outlook Mailer Constants
This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…