add_filter( ‘wcvendors_vendor_order_items_args’, ‘wcv_enable_product_image_vendor_order_email’ ); function wcv_enable_product_image_vendor_order_email( $order_item_args ){ $order_item_args[‘show_image’] = true; return $order_item_args; }Continue reading
add_filter( ‘wcv_pro_dashboard_urls’, ‘custom_menu_link’ ); function custom_menu_link( $pages ) { $pages[ ‘custom_link’ ] = array( ‘slug’ => ‘http://yoursite.com/customlink/here’, ‘label’ => __(‘Custom Link’, ‘wcvendors-pro’ ), ‘actions’ => array() ); return $pages; }Continue reading
// 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(‘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