Skip to content

Instantly share code, notes, and snippets.

@fervous
Forked from digitalchild/functions.php
Created March 10, 2017 03:53
Show Gist options
  • Save fervous/f17c7da25dfe4c78659560aa89fc35f0 to your computer and use it in GitHub Desktop.
Save fervous/f17c7da25dfe4c78659560aa89fc35f0 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