PATH:
home
/
letacommog
/
pymreception1
/
wp-content
/
plugins
/
wc-frontend-manager
/
core
<?php /** * WCFM plugin core * * Marketplace WC Product Vendors Support * * @author WC Lovers * @package wcfm/core * @version 2.1.0 */ class WCFM_WCPVendors { public $vendor_id; public function __construct() { global $WCFM; if( wcfm_is_vendor() ) { $this->vendor_id = apply_filters( 'wcfm_current_vendor_id', WC_Product_Vendors_Utils::get_logged_in_vendor() ); // Store Identity add_filter( 'wcfm_store_logo', array( &$this, 'wcpvendors_store_logo' ) ); add_filter( 'wcfm_store_name', array( &$this, 'wcpvendors_store_name' ) ); // Myaccount Vendor Dashboard URL add_action( 'woocommerce_before_my_account', array( &$this, 'wcpvendors_add_section' ), 0 ); // Allow Vendor user to manage product from catalog add_filter( 'wcfm_allwoed_user_roles', array( &$this, 'allow_wcpvendors_vendor_role' ) ); add_filter( 'wcfm_allwoed_vendor_user_roles', array( &$this, 'allow_wcpvendors_vendor_role' ) ); // Filter Vendor Products add_filter( 'wcfm_products_args', array( &$this, 'wcpvendors_products_args' ) ); add_filter( 'get_booking_products_args', array( $this, 'wcpvendors_products_args' ) ); add_filter( 'get_appointment_products_args', array( $this, 'wcpvendors_products_args' ) ); add_filter( 'wpjmp_job_form_products_args', array( &$this, 'wcpvendors_products_args' ) ); add_filter( 'wpjmp_admin_job_form_products_args', array( &$this, 'wcpvendors_products_args' ) ); // Listing Filter for specific vendor add_filter( 'wcfm_articles_args', array( &$this, 'wcpvendors_listing_args' ) ); add_filter( 'wcfm_listing_args', array( $this, 'wcpvendors_listing_args' ), 20 ); add_filter( "woocommerce_product_export_product_query_args", array( &$this, 'wcpvendors_listing_args' ), 100 ); // Customers args if( apply_filters( 'wcfm_is_allow_order_customers_to_vendors', true ) ) { add_filter( 'wcfm_get_customers_args', array( &$this, 'wcpvendors_filter_customers' ), 20 ); } // Booking Filter add_filter( 'wcfm_wcb_include_bookings', array( &$this, 'wcpvendors_wcb_include_bookings' ) ); // Manage Vendor Product Permissions add_action( 'after_wcfm_products_manage_meta_save', array( &$this, 'wcpvendors_product_manage_vendor_association' ), 10, 2 ); add_action( 'after_wcfm_product_duplicate', array( &$this, 'wcpvendors_product_manage_vendor_association' ), 10, 2 ); add_action( 'wcfm_geo_locator_default_address', array( &$this, 'wcpvendors_geo_locator_default_address' ), 10 ); // Manage Vendor Product Export Permissions - 2.4.2 add_filter( 'woocommerce_product_export_row_data', array( &$this, 'wcpvendors_product_export_row_data' ), 100, 2 ); // Filter Vendor Coupons add_filter( 'wcfm_coupons_args', array( &$this, 'wcpvendors_coupons_args' ) ); // Manage Vendor Coupon Permission add_filter( 'wcfm_coupon_types', array( &$this, 'wcpvendors_coupon_types' ) ); // Manage Order Details Permission add_filter( 'wcfm_allow_order_details', array( &$this, 'wcpvendors_is_allow_order_details' ) ); add_filter( 'wcfm_valid_line_items', array( &$this, 'wcpvendors_valid_line_items' ), 10, 3 ); add_filter( 'wcfm_order_details_shipping_line_item', array( &$this, 'wcpvendors_is_allow_order_details_shipping_line_item' ) ); add_filter( 'wcfm_order_details_tax_line_item', array( &$this, 'wcpvendors_is_allow_order_details_tax_line_item' ) ); add_filter( 'wcfm_order_details_line_total_head', array( &$this, 'wcpvendors_is_allow_order_details_line_total_head' ) ); add_filter( 'wcfm_order_details_line_total', array( &$this, 'wcpvendors_is_allow_order_details_line_total' ) ); add_filter( 'wcfm_order_details_tax_total', array( &$this, 'wcpvendors_is_allow_order_details_tax_total' ) ); add_filter( 'wcfm_order_details_fee_line_item', array( &$this, 'wcpvendors_is_allow_order_details_fee_line_item' ) ); add_filter( 'wcfm_order_details_refund_line_item', array( &$this, 'wcpvendors_is_allow_order_details_refund_line_item' ) ); add_filter( 'wcfm_order_details_coupon_line_item', array( &$this, 'wcpvendors_is_allow_order_details_coupon_line_item' ) ); add_filter( 'wcfm_order_details_total', array( &$this, 'wcpvendors_is_allow_wcfm_order_details_total' ) ); add_action ( 'wcfm_order_details_after_line_total_head', array( &$this, 'wcpvendors_after_line_total_head' ) ); add_action ( 'wcfm_after_order_details_line_total', array( &$this, 'wcpvendors_after_line_total' ), 10, 2 ); add_action ( 'wcfm_order_totals_after_total', array( &$this, 'wcpvendors_order_total_commission' ) ); // Report Filter add_filter( 'wcfm_report_out_of_stock_query_from', array( &$this, 'wcpvendors_report_out_of_stock_query_from' ), 100, 2 ); add_filter( 'woocommerce_reports_order_statuses', array( &$this, 'wcpvendors_reports_order_statuses' ) ); add_filter( 'woocommerce_dashboard_status_widget_top_seller_query', array( &$this, 'wcpvendors_dashboard_status_widget_top_seller_query'), 100 ); // Message Author Filter add_filter( 'wcfm_message_author', array( &$this, 'wcpvendors_message_author' ) ); } } // WCFM wcpvendors Store Logo function wcpvendors_store_logo( $store_logo ) { $vendor_data = WC_Product_Vendors_Utils::get_vendor_data_from_user(); $logo = ! empty( $vendor_data['logo'] ) ? $vendor_data['logo'] : ''; $logo_image_url = wp_get_attachment_image_src( $logo, 'thumbnail' ); if ( !empty( $logo_image_url ) ) { $store_logo = $logo_image_url[0]; $shop_link = get_term_link( apply_filters( 'wcfm_current_vendor_id', WC_Product_Vendors_Utils::get_logged_in_vendor() ), WC_PRODUCT_VENDORS_TAXONOMY ); if( $shop_link ) { $store_logo = '<a class="wcfm_store_logo_icon" href="' . $shop_link . '" target="_blank"><img src="' . $store_logo . '" alt="Store Logo" /></a>'; } } return $store_logo; } // WCFM wcpvendors Store Name function wcpvendors_store_name( $store_name ) { $vendor_data = WC_Product_Vendors_Utils::get_vendor_data_from_user(); $store_name = wcfm_get_option( 'wcfm_my_store_label', __( 'My Store', 'wc-frontend-manager' ) ); $shop_link = get_term_link( apply_filters( 'wcfm_current_vendor_id', WC_Product_Vendors_Utils::get_logged_in_vendor() ), WC_PRODUCT_VENDORS_TAXONOMY ); if( !is_wp_error( $shop_link ) ) { if( $store_name ) { $store_name = '<a target="_blank" href="' . apply_filters('wcpv_vendor_shop_permalink', $shop_link) . '">' . $store_name . '</a>'; } else { $store_name = '<a target="_blank" href="' . apply_filters('wcpv_vendor_shop_permalink', $shop_link) . '">' . __('Shop', 'wc-frontend-manager') . '</a>'; } } return $store_name; } /** * Add vendor specific section to my accounts page * */ public function wcpvendors_add_section() { if ( WC_Product_Vendors_Utils::auth_vendor_user() ) { printf( '<a href="%s" title="%s" class="button wcfm-vendor-dashboard-link">%s</a>', esc_url( get_wcfm_page() ), esc_attr( __( 'Vendor Dashboard', 'woocommerce-product-vendors' ) ), __( 'Vendor Dashboard', 'woocommerce-product-vendors' ) ); ?> <style> .vendor-dashboard-link { display: none !important; } </style> <?php } return true; } function allow_wcpvendors_vendor_role( $allowed_roles ) { if( wcfm_is_vendor() ) { $allowed_roles[] = 'wc_product_vendors_manager_vendor'; $allowed_roles[] = 'wc_product_vendors_admin_vendor'; } return $allowed_roles; } function wcpvendors_products_args( $args ) { if( wcfm_is_vendor() ) { $args['tax_query'][] = array( 'taxonomy' => WC_PRODUCT_VENDORS_TAXONOMY, 'field' => 'id', 'terms' => array(apply_filters( 'wcfm_current_vendor_id', WC_Product_Vendors_Utils::get_logged_in_vendor() )), 'operator' => 'IN' ); } return $args; } // Product Vendors Listing args function wcpvendors_listing_args( $args ) { $args['author'] = apply_filters( 'wcfm_current_vendor_id', get_current_user_id() ); return $args; } /** * Product Vendors filter customers */ function wcpvendors_filter_customers( $args ) { global $WCFM, $wpdb; $vendor_customers = array(); // Own Customers $wcfm_customers_array = get_users( $args ); if(!empty($wcfm_customers_array)) { foreach( $wcfm_customers_array as $wcfm_customers_single ) { $vendor_customers[$wcfm_customers_single->ID] = $wcfm_customers_single->ID; } } // Order Customers $sql = 'SELECT order_id FROM ' . WC_PRODUCT_VENDORS_COMMISSION_TABLE; $sql .= ' WHERE 1=1'; $sql .= " AND `vendor_id` = {$this->vendor_id}"; $wcfm_orders_array = $wpdb->get_results( $sql ); if(!empty($wcfm_orders_array)) { foreach($wcfm_orders_array as $wcfm_orders_single) { $the_order = wc_get_order( $wcfm_orders_single->order_id ); if ( $the_order && is_object( $the_order ) && $the_order->get_user_id() ) { $vendor_customers[$the_order->get_user_id()] = $the_order->get_user_id(); } } } if( !empty( $vendor_customers ) ) { $args['include'] = array_keys( array_unique( $vendor_customers ) ); } else { $args['include'] = array(0); } if( isset( $args['meta_key'] ) ) unset( $args['meta_key'] ); if( isset( $args['meta_value'] ) ) unset( $args['meta_value'] ); return $args; } /** * WC Product Vendors Bookings */ function wcpvendors_wcb_include_bookings( ) { global $WCFM, $wpdb, $_POST; $vendor_products = WC_Product_Vendors_Utils::get_vendor_product_ids(); if( empty($vendor_products) ) return array(0); $query = "SELECT ID FROM {$wpdb->posts} as posts INNER JOIN {$wpdb->postmeta} AS postmeta ON posts.ID = postmeta.post_id WHERE 1=1 AND posts.post_type IN ( 'wc_booking' ) AND postmeta.meta_key = '_booking_product_id' AND postmeta.meta_value in (" . implode(',', $vendor_products) . ")"; $vendor_bookings = $wpdb->get_results($query); if( empty($vendor_bookings) ) return array(0); $vendor_bookings_arr = array(); foreach( $vendor_bookings as $vendor_booking ) { $vendor_bookings_arr[] = $vendor_booking->ID; } if( !empty($vendor_bookings_arr) ) return $vendor_bookings_arr; return array(0); } // Product Vendor association on Product save function wcpvendors_product_manage_vendor_association( $new_product_id, $wcfm_products_manage_form_data ) { global $WCFM; if ( WC_Product_Vendors_Utils::auth_vendor_user() ) { // check post type to be product if ( 'product' === get_post_type( $new_product_id ) ) { // automatically set the vendor term for this product wp_set_object_terms( $new_product_id, apply_filters( 'wcfm_current_vendor_id', WC_Product_Vendors_Utils::get_logged_in_vendor() ), WC_PRODUCT_VENDORS_TAXONOMY ); // set visibility to catalog/search update_post_meta( $new_product_id, '_visibility', 'visible' ); // Admin Message for Pending Review $product_status = get_post_status( $new_product_id ); $author_id = apply_filters( 'wcfm_current_vendor_id', WC_Product_Vendors_Utils::get_logged_in_vendor() ); if( $product_status == 'pending' ) { $WCFM->wcfm_notification->wcfm_admin_notification_product_review( $author_id, $new_product_id ); } else { $WCFM->wcfm_notification->wcfm_admin_notification_new_product( $author_id, $new_product_id ); } } } } // Geo Locator default address - 3.2.8 function wcpvendors_geo_locator_default_address( $address ) { /*$addr_1 = get_user_meta( $this->vendor_id, '_vendor_address_1', true ); $addr_2 = get_user_meta( $this->vendor_id, '_vendor_address_2', true ); $country = get_user_meta( $this->vendor_id, '_vendor_country', true ); $city = get_user_meta( $this->vendor_id, '_vendor_city', true ); $state = get_user_meta( $this->vendor_id, '_vendor_state', true ); $zip = get_user_meta( $this->vendor_id, '_vendor_postcode', true ); $address = get_user_meta( $this->vendor_id, '_vendor_address_1', true ); if( $addr_2 ) $address .= ' ' . $addr_2; if( $city ) $address .= ', ' . $city; if( $state ) $address .= ', ' . $state; if( $zip ) $address .= ' ' . $zip; if( $country ) $address .= ', ' . $country;*/ return $address; } // Product Export Data Filter - 2.4.2 function wcpvendors_product_export_row_data( $row, $product ) { global $WCFM; $user_id = $this->vendor_id; $products = $this->WCPV_get_vendor_products(); if( !in_array( $product->get_ID(), $products ) ) return array(); return $row; } // Coupons Args function wcpvendors_coupons_args( $args ) { if( wcfm_is_vendor() ) $args['author'] = get_current_user_id(); return $args; } // Coupon Types function wcpvendors_coupon_types( $types ) { $wcmp_coupon_types = array( 'percent', 'fixed_product' ); foreach( $types as $type => $label ) if( !in_array( $type, $wcmp_coupon_types ) ) unset( $types[$type] ); return $types; } // Order Status details function wcpvendors_is_allow_order_details( $allow ) { return false; } // Filter Order Details Line Items as Per Vendor function wcpvendors_valid_line_items( $items, $order_id ) { global $WCFM, $wpdb; $vendor_id = WC_Product_Vendors_Utils::get_logged_in_vendor(); $valid_items = array(); $sql = 'SELECT * FROM ' . WC_PRODUCT_VENDORS_COMMISSION_TABLE . ' AS commission'; $sql .= ' WHERE 1=1'; $sql .= " AND `vendor_id` = {$vendor_id}"; $sql .= " AND `order_id` = {$order_id}"; $data_items = $wpdb->get_results( $sql ); if( !empty($data_items) ) { foreach( $data_items as $data_item ) { if ( ! empty( $data_item->variation_id ) ) $valid_items[] = $data_item->variation_id; $valid_items[] = $data_item->product_id; } } $valid = array(); foreach ($items as $key => $value) { if ( in_array( $value->get_variation_id(), $valid_items ) || in_array( $value->get_product_id(), $valid_items ) ) { $valid[$key] = $value; } elseif( $value->get_product_id() == 0 ) { $_product_id = wc_get_order_item_meta( $key, '_product_id', true ); if ( in_array( $_product_id, $valid_items ) ) { $valid[$key] = $value; } } } return $valid; } // Order Details Shipping Line Item function wcpvendors_is_allow_order_details_shipping_line_item( $allow ) { //if ( !WC_Vendors::$pv_options->get_option( 'give_shipping' ) ) $allow = false; $allow = false; return $allow; } // Order Details Tax Line Item function wcpvendors_is_allow_order_details_tax_line_item( $allow ) { //if ( !WC_Vendors::$pv_options->get_option( 'give_tax' ) ) $allow = false; $allow = false; return $allow; } // Order Total Line Item Head function wcpvendors_is_allow_order_details_line_total_head( $allow ) { $allow = false; return $allow; } // Order Total Line Item function wcpvendors_is_allow_order_details_line_total( $allow ) { $allow = false; return $allow; } // Order Details Tax Total function wcpvendors_is_allow_order_details_tax_total( $allow ) { //if ( !WC_Vendors::$pv_options->get_option( 'give_tax' ) ) $allow = false; $allow = false; return $allow; } // Order Details Fee Line Item function wcpvendors_is_allow_order_details_fee_line_item( $allow ) { $allow = false; return $allow; } // Order Details Coupon Line Item function wcpvendors_is_allow_order_details_coupon_line_item( $allow ) { $allow = false; return $allow; } // Order Details Refunded Line Item function wcpvendors_is_allow_order_details_refund_line_item( $allow ) { $allow = false; return $allow; } // Order Details Total function wcpvendors_is_allow_wcfm_order_details_total( $allow ) { $allow = false; return $allow; } // wcpvendors After Order Total Line Head function wcpvendors_after_line_total_head( $order ) { global $WCFM; if( apply_filters( 'wcfm_is_allow_view_commission', true ) ) { ?> <th class="line_cost sortable" data-sort="float"><?php _e( 'Commission', 'wc-frontend-manager' ); ?></th> <?php } ?> <th class="line_cost sortable no_ipad no_mob"><?php _e( 'Shipping', 'wc-frontend-manager' ); ?></th> <th class="line_cost sortable no_ipad no_mob"><?php _e( 'Tax', 'wc-frontend-manager' ); ?></th> <th class="line_cost sortable no_ipad no_mob"><?php _e( 'Shipping Tax', 'wc-frontend-manager' ); ?></th> <th class="line_cost sortable no_ipad no_mob"><?php _e( 'Total', 'wc-frontend-manager' ); ?></th> <?php } // wcpvendors after Order total Line item function wcpvendors_after_line_total( $item, $order ) { global $WCFM, $wpdb; $order_currency = $order->get_currency(); $vendor_id = $this->vendor_id; $qty = ( isset( $item['qty'] ) ? esc_html( $item['qty'] ) : '1' ); if( $item->get_product_id() ) { $product_id = $item->get_product_id(); $variation_id = $item->get_variation_id(); } else { $product_id = wc_get_order_item_meta( $item->get_id(), '_product_id', true ); $variation_id = wc_get_order_item_meta( $item->get_id(), '_variation_id', true ); } $sql = " SELECT product_amount, product_commission_amount, product_shipping_amount, product_shipping_tax_amount, product_tax_amount FROM " . WC_PRODUCT_VENDORS_COMMISSION_TABLE . " WHERE (product_id = " . $product_id . ") AND order_id = " . $order->get_id() . " AND `vendor_id` = " . $vendor_id; $order_line_due = $wpdb->get_results( $sql ); if( !empty( $order_line_due ) ) { $line_total = floatval($order_line_due[0]->product_amount); $line_total += floatval($order_line_due[0]->product_shipping_amount); $line_total += floatval($order_line_due[0]->product_tax_amount); $line_total += floatval($order_line_due[0]->product_shipping_tax_amount); ?> <?php if( apply_filters( 'wcfm_is_allow_view_commission', true ) ) { ?> <td class="line_cost" width="1%"> <div class="view"><?php echo wc_price( $order_line_due[0]->product_commission_amount, array( 'currency' => $order_currency ) ); ?></div> </td> <?php } ?> <td class="line_cost no_ipad no_mob" width="1%"> <div class="view"><?php echo wc_price( $order_line_due[0]->product_shipping_amount, array( 'currency' => $order_currency ) ); ?></div> </td> <td class="line_cost no_ipad no_mob"> <div class="view"><?php echo wc_price( $order_line_due[0]->product_tax_amount, array( 'currency' => $order_currency ) ); ?></div> </td> <td class="line_cost shipping_tax_cost no_ipad no_mob"> <div class="view"><?php echo wc_price( $order_line_due[0]->product_shipping_tax_amount, array( 'currency' => $order_currency ) ); ?></div> </td> <?php } else { ?> <?php if( apply_filters( 'wcfm_is_allow_view_commission', true ) ) { ?> <td class="line_cost" width="1%"> <div class="view"><?php echo wc_price( 0, array( 'currency' => $order_currency ) ); ?></div> </td> <?php } ?> <td class="line_cost" width="1%"> <div class="view"><?php echo wc_price( 0, array( 'currency' => $order_currency ) ); ?></div> </td> <td class="line_cost" width="1%"> <div class="view"><?php echo wc_price( 0, array( 'currency' => $order_currency ) ); ?></div> </td> <td class="line_cost" width="1%"></td> <?php } ?> <td class="line_cost total_cost no_ipad no_mob"><?php echo wc_price( $line_total, array( 'currency' => $order_currency ) ); ?></td> <?php } // wcpvendors Order Total Commission function wcpvendors_order_total_commission( $order_id ) { global $WCFM, $wpdb; $order = wc_get_order( $order_id ); $order_currency = $order->get_currency(); $vendor_id = $this->vendor_id; $gross_sale_order = $WCFM->wcfm_vendor_support->wcfm_get_gross_sales_by_vendor( $this->vendor_id, '', '', $order_id ); $sql = " SELECT SUM(total_commission_amount) as line_total, SUM( product_commission_amount) as product_commission_amount, SUM(product_shipping_amount) as shipping, SUM(product_shipping_tax_amount) as shipping_tax, SUM(product_tax_amount) as tax FROM " .WC_PRODUCT_VENDORS_COMMISSION_TABLE . " WHERE `vendor_id` = " . $vendor_id . " AND order_id = " . $order_id; $order_due = $wpdb->get_results( $sql ); ?> <?php if( apply_filters( 'wcfm_is_allow_view_commission', true ) ) { ?> <tr> <td class="label"><?php _e( 'Line Commission', 'wc-frontend-manager' ); ?>:</td> <td> </td> <td class="total"> <div class="view"><?php echo wc_price( $order_due[0]->product_commission_amount, array( 'currency' => $order_currency ) ); ?></div> </td> </tr> <?php } ?> <tr> <td class="label"><?php _e( 'Shipping', 'wc-frontend-manager' ); ?>:</td> <td> </td> <td class="total"> <div class="view"><?php echo wc_price( $order_due[0]->shipping, array( 'currency' => $order_currency ) ); ?></div> </td> </tr> <tr> <td class="label"><?php _e( 'Tax', 'wc-frontend-manager' ); ?>:</td> <td> </td> <td class="total"> <div class="view"><?php echo wc_price( $order_due[0]->tax, array( 'currency' => $order_currency ) ); ?></div> </td> </tr> <tr> <td class="label"><?php _e( 'Shipping Tax', 'wc-frontend-manager' ); ?>:</td> <td> </td> <td class="total"> <div class="view"><?php echo wc_price( $order_due[0]->shipping_tax, array( 'currency' => $order_currency ) ); ?></div> </td> </tr> <?php if( apply_filters( 'wcfm_is_allow_view_commission', true ) ) { ?> <tr> <td class="label"><?php _e( 'Total Earning', 'wc-frontend-manager' ); ?>:</td> <td> </td> <td class="total"> <div class="view"><?php echo wc_price( $order_due[0]->line_total, array( 'currency' => $order_currency ) ); ?></div> </td> </tr> <?php } ?> <tr> <td class="label"><?php _e( 'Gross Total', 'wc-frontend-manager' ); ?>:</td> <td> </td> <td class="total"> <div class="view"> <?php echo wc_price( $gross_sale_order, array( 'currency' => $order_currency ) ); ?> </div> </td> </tr> <?php } // Report Vendor Filter function wcpvendors_report_out_of_stock_query_from( $query_from, $stock ) { global $WCFM, $wpdb, $_POST; $user_id = apply_filters( 'wcfm_current_vendor_id', get_current_user_id() ); $query_from = "FROM {$wpdb->posts} as posts INNER JOIN {$wpdb->postmeta} AS postmeta ON posts.ID = postmeta.post_id INNER JOIN {$wpdb->postmeta} AS postmeta2 ON posts.ID = postmeta2.post_id WHERE 1=1 AND posts.post_type IN ( 'product', 'product_variation' ) AND posts.post_status = 'publish' AND posts.post_author = {$user_id} AND postmeta2.meta_key = '_manage_stock' AND postmeta2.meta_value = 'yes' AND postmeta.meta_key = '_stock' AND CAST(postmeta.meta_value AS SIGNED) <= '{$stock}' "; return $query_from; } // Report Order Data Status function wcpvendors_reports_order_statuses( $order_status ) { $order_status = array( 'completed', 'processing' ); return $order_status; } // WCPVendor dashboard top seller query function wcpvendors_dashboard_status_widget_top_seller_query( $query ) { global $WCFM, $wpdb, $_POST; $products = $this->WCPV_get_vendor_products(); if( empty($products) ) return array(0); $query['where'] .= "AND order_item_meta_2.meta_value in (" . implode( ',', $products ) . ")"; return $query; } /** * WC Vendors current venndor products */ function WCPV_get_vendor_products( $vendor_id = 0 ) { if( !$vendor_id ) $vendor_id = apply_filters( 'wcfm_current_vendor_id', get_current_user_id() ); $post_count = count_user_posts( $vendor_id, 'product' ); $post_loop_offset = 0; $products_arr = array(0); while( $post_loop_offset < $post_count ) { $args = array( 'posts_per_page' => 10, 'offset' => $post_loop_offset, 'category' => '', 'category_name' => '', 'orderby' => 'date', 'order' => 'DESC', 'include' => '', 'exclude' => '', 'meta_key' => '', 'meta_value' => '', 'post_type' => 'product', 'post_mime_type' => '', 'post_parent' => '', //'author' => get_current_user_id(), 'post_status' => array('draft', 'pending', 'publish', 'private'), 'suppress_filters' => 0, 'fields' => 'ids' ); $args = apply_filters( 'wcfm_products_args', $args ); $products = get_posts( $args ); if(!empty($products)) { foreach($products as $product) { $products_arr[] = $product; } } $post_loop_offset += 10; } return $products_arr; } // Message authoe filter function wcpvendors_message_author( $author ) { $author = WC_Product_Vendors_Utils::get_logged_in_vendor(); return $author; } }
[+]
..
[-] class-wcfm-wcpvendors.php
[edit]
[-] class-wcfm-admin.php
[edit]
[-] class-wcfm-customfield-support.php
[edit]
[-] class-wcfm-withdrawal.php
[edit]
[-] class-wcfm-non-ajax.php
[edit]
[-] class-wcfm-template.php
[edit]
[-] class-wcfm-enquiry.php
[edit]
[-] class-wcfm-xasubscriptions.php
[edit]
[-] class-wcfm-wcvendors.php
[edit]
[-] class-wcfm-wcfmmarketplace.php
[edit]
[-] class-wcfm-customer.php
[edit]
[-] class-wcfm-product-popup.php
[edit]
[-] class-wcfm-policy.php
[edit]
[-] class-wcfm.php
[edit]
[-] class-wcfm-frontend.php
[edit]
[-] class-wcfm-wcmarketplace.php
[edit]
[-] class-wcfm-capability.php
[edit]
[-] class-wcfm-query.php
[edit]
[-] class-wcfm-wcbookings.php
[edit]
[-] class-wcfm-preferences.php
[edit]
[-] class-wcfm-shortcode.php
[edit]
[-] class-wcfm-ajax.php
[edit]
[-] class-wcfm-article.php
[edit]
[-] class-wcfm-notification.php
[edit]
[-] class-wcfm-library.php
[edit]
[-] class-wcfm-buddypress.php
[edit]
[-] class-wcfm-thirdparty-support.php
[edit]
[-] class-wcfm-wcsubscriptions.php
[edit]
[-] class-wcfm-catalog.php
[edit]
[-] class-wcfm-vendor-support.php
[edit]
[-] class-wcfm-dokan.php
[edit]