Remove Specific Taxonomy From Public Taxonomies List
This filter can be used to remove the 'genre' taxonomy from the public taxonomies list.
Prevent AIOSEO From Outputting a rel=”prev” Link
Prevent AIOSEO from outputting a rel=”prev” link
Exclude All Posts of a Category from News Sitemap
This snippet can be used to exclude All Posts of a Category from News Sitemap. Note:…
Remove HealthAndBeautyBusiness Schema
This snippet removes HealthAndBeautyBusiness Schema
Continue Shopping Button
/** * Add Continue Shopping Button on Cart Page * Add to theme functions.php file or…
Make Form Fields Required Not Required
This example shows how to make a form field required or not required.
Change Country Field To Hidden
Change the Country field in the donation form to a hidden field with a hard-coded default…
Change Custom Amount Field Label
Filter the custom amount field description.
Set New User Role
Set the role of users who register through the Charitable registration form shortcode.
Add Custom Field From Donation Form On The Receipt Page
This is an example of how to show a field data someone entered in their donation…
Disable the space key with the special CSS class
This code snippet disables the space key. When a user presses the space key in these…
How to Customize the Labels for Image Choices
/* Position labels over images and hide them by default */ form#wpforms-form-1000 .wpforms-field .wpforms-image-choices-label { position:…
How to Block Names From Completing Your Form - First Last and First Middle Last format
/** * Prevent certain names from the other formats for the Name form field. * *…
Admin Bar - Updates
Show updates in Admin Bar
Disable All Admin Notices individually
function disable_all_admin_notices() { remove_all_actions('admin_notices'); } add_action('admin_init', 'disable_all_admin_notices');