Skip to content

Instantly share code, notes, and snippets.

@digitalchild
Created October 10, 2015 06:20
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/4d2fc3582bd2bd0b515b to your computer and use it in GitHub Desktop.
Save digitalchild/4d2fc3582bd2bd0b515b to your computer and use it in GitHub Desktop.
Change the Add Product URL on Pro Vendor dashboard
<?php
// Change the "Add Product" button url to the back end.
add_filter('wcv_add_product_url', 'new_add_product_url');
function new_add_product_url(){
return admin_url('post-new.php?post_type=product');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment