// Hook into the navigation add_filter( ‘wcv_pro_dashboard_urls’, ‘add_test_page_nav’, 9 ); function add_test_page_nav( $pages ){ $pages[ ‘test_page’ ] = array( ‘slug’ => ‘test_page’, ‘id’ => ‘test_page’, ‘label’ => __( ‘Test Page’, ‘wcvendors-pro’ ), ‘actions’ => array( ‘edit’ => __( ‘New’, ‘wcvendors-pro’…Continue reading
add_filter( ‘wcvendors_pro_mark_order_received_status’, ‘__return_false’ );Continue reading
add_filter(‘woocommerce_login_redirect’, ‘redo_roles’, 10, 2); function redo_roles() { remove_role( ‘pending_vendor’ ); add_role( ‘pending_vendor’, __( ‘Pending Vendor’, ‘wcvendors’ ), array( ‘read’ => true, ‘edit_posts’ => false, ‘delete_posts’ => false ) ); remove_role( ‘vendor’ ); add_role( ‘vendor’, ‘Vendor’, array( ‘assign_product_terms’ => true, ‘edit_products’…Continue reading
/** * Given the provided list of vendor_ids in the vendors array, override the commission to use the vendor store commission. * Requires: WC Vendors Pro 1.8.6 or above. */ add_filter( ‘wcvendors_commission_args’, ‘wcv_store_vendor_override’, 10, 4 ); function wcv_store_vendor_override( $commission_args, $product_id,…Continue reading
/** * Make all new user registrations Vendors. */ add_filter( ‘woocommerce_new_customer_data’, ‘wcv_woocommerce_new_user_data’ ); function wcv_woocommerce_new_user_data( $data ){ $data[‘role’] = ‘vendor’; // the new default role return $data; } /** * Redirect the new registered user to the Vendor Dashboard */…Continue reading
if ( ! function_exists( ‘wcv_remove_recent_product_table_columns’ ) ) { /** * Remove columns from Recent Products table in Pro Dashboard * * @param array $columns Columns of table. * @return array */ function wcv_remove_recent_product_table_columns( $columns ) { //Remove Status column unset(…Continue reading
if ( ! function_exists( ‘wcv_remove_recent_order_table_columns’ ) ) { /** * Remove columns from Recent Orders table in Pro Dashboard * * @param array $columns Columns of table. * @return array */ function wcv_remove_recent_order_table_columns( $columns ) { //Remove commission column unset(…Continue reading
if ( ! function_exists( ‘wcv_remove_recent_order_table_columns’ ) ) { /** * Remove columns from Recent Orders table in Pro Dashboard * * @param array $columns Columns of table. * @return array */ function wcv_remove_recent_order_table_columns( $columns ) { //Remove commission column unset(…Continue reading
__( ‘ID’, ‘wcvendors-pro’ ), ‘order_number’ => __( ‘Order’, ‘wcvendors-pro’ ), ‘customer’ => __( ‘Customer’, ‘wcvendors-pro’ ), ‘products’ => __( ‘Products’, ‘wcvendors-pro’ ), ‘order_notes’ => __( ‘Customer Notes’, ‘wcvendors-pro’ ), ‘total’ => __( ‘Total’, ‘wcvendors-pro’ ), ‘status’ => __( ‘Shipped’, ‘wcvendors-pro’…Continue reading