Skip to content

Instantly share code, notes, and snippets.

@digitalchild
Created March 9, 2017 23:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save digitalchild/202ee1ef2cafce023d316a9eb56c7d68 to your computer and use it in GitHub Desktop.
Save digitalchild/202ee1ef2cafce023d316a9eb56c7d68 to your computer and use it in GitHub Desktop.
Change product title to date selector in WC Vendors Pro
<?php
// Put this in your themes functions.php
add_filter( 'wcv_product_title', 'product_title_date' );
function product_title_date( $args ){
$args[ 'class' ] = 'wcv-datepicker';
return $args;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment