Skip to content

Instantly share code, notes, and snippets.

@bentasm1
Created February 26, 2016 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bentasm1/9d746b4a3d2fc3b5c543 to your computer and use it in GitHub Desktop.
Save bentasm1/9d746b4a3d2fc3b5c543 to your computer and use it in GitHub Desktop.
WC Vendors Pro - Change default vendor store name
/* WC Vendors Pro - Change the default vendor store name from "Username Store" to "Something Else" */
add_filter('wcv_default_store_name', 'custom_wcv_default_store_name');
function custom_wcv_default_store_name () {
$new_store_default = 'My Default Store Title';
return $new_store_default;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment