Gravity Forms: Cambridge Caregivers Gravity Forms Snippets
Credit Card Expiration Field on Cambridge Caregivers Engagement Form year dropdown set to current year and…
Runs After A Successful OptinMonster Conversion (om.Optin.success)
Here are some things to know before you begin: All Javascript events are asynchronous. All campaign…
Remove Stats Summary Block From Specific Campaign
Hide the campaign summary stats from a few specific campaign, using the campaign IDs.
MemberPress: Remove Accordion from Courses
Use this snippet if you would like to remove the accordion CSS and JS from the…
TOC before first heading
Output the TOC block before the first heading in a post
Add Payment ID to Sales API
If sequential order numbers are on, those numbers are returned in the sales API instead of…
Remove Post Title from Yoast Breadcrumbs
This snippet removes the post title from Yoast SEO breadcrumbs
Allow HTML in the product description
function wcv_wpkses_post_html_tags( $tags, $context ) { if ( 'post' === $context ) { $tags['iframe'] = array(…
Add custom page to the vendor dashboard - custom menu link
add_filter( 'wcv_pro_dashboard_urls', 'custom_menu_link' ); function custom_menu_link( $pages ) { $pages[ 'custom_link' ] = array( 'slug' =>…
Buy Now
...
Stop Lazy Load
add_filter( 'wp_lazy_loading_enabled', '__return_false' );
featured-images-rss-feed
function featuredtoRSS($content) { global $post; if ( has_post_thumbnail( $post->ID ) ){ $content = '<div>' . get_the_post_thumbnail(…