Disable Schema Output for WooCommerce products
This filter can be used to Disable Schema Output for WooCommerce products.
Exclude a Specific Post from the Sitemap
This filter can be used to Exclude a Specific Post from the Sitemap. Note: Replace 614…
Fix Image Caption Rendering Issue Caused by WPResidence Theme
This snippet fixes the Image Caption Rendering Issue Caused by WPResidence Theme
How to Build a Profile Page Using Post Submissions
With this snippet and the Post Submissions addon, you can create professional author profiles that automatically…
Custom Style Icons for Rating field
This snippet will customize your rating icons in the Rating field
How to Automatically Submit a Form with a Field Choice - CSS
button#wpforms-submit-3046 { display: none; } form#wpforms-form-3046 span.wpforms-icon-choices-label { font-size: 0; } ul#wpforms-3046-field_3 li label:hover, ul#wpforms-3046-field_4 li…
How to Add BCC to Email Notifications (for all forms)
add_filter( 'wp_mail', function ( $args ) { // Add the BCC email address here $bcc_address =…
Merging Multiple WPForms Field Values into Post Content
/** * Merging Multiple WPForms Field Values into Post Content * * @link https://wpforms.com/developers/merging-multiple-wpforms-field-values-into-post-content */ function…
Sticky header
/*Sticky header*/ #site-header { position: fixed; top:0; opacity: 0.98; } #main { margin-top: 70px !important; /*…
Change Opening Hours Closed Label
This filter can be used to change the closed label of Opening Hours. Replace 'Closed today.'…
Change Default Post Type Name “aioseo-location”
This filter can be used to change the default post type name from “aioseo-location” to 'franchise-location'.
Disable SEO News Dashboard Widget
This filter can be used to Disable SEO News Dashboard Widget.
Control Whether AIOSEO Flushes Output Buffer After Rewriting Title
This snippet can be used to control whether AIOSEO flushes the output buffer after rewriting the…
Sending Numerical Values Through Webhooks
This snippet allows you to send numbers through Webhooks as opposed to the default behaviour that…
How to Create a Form With Floating Labels
/** * Remove the field label from the top of the field * * @link https://wpforms.com/developers/how-to-create-a-form-with-floating-labels/…