WC Lovers

WooCommerce Frontend Manager - Multivendor marketplace vendor dashboard

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • in reply to: Distance Rate Shipping #125568
    pebi44
    Participant

    After updating the plugin, it was fixed.

    in reply to: Coupons #125217
    pebi44
    Participant

    Hello, the same thing happened to me and I solved it.
    You have to go to woocommerce – Settings – Enable coupons

    in reply to: Distance Rate Shipping #125202
    pebi44
    Participant

    Hi, is there any news about the missing “cost” field?

    in reply to: Send vendor information by mail to the customer #124633
    pebi44
    Participant
    add_action( 'woocommerce_email_order_meta', 'add_sellerinfo_to_buyer_email',50,4 );
    function add_sellerinfo_to_buyer_email( $order, $sent_to_admin, $plain_text, $email ) {
    	global $WCFM;
    	if ( !in_array( $email->id, array( 'new_order','store-new-order') )){ 
    		$items = $order->get_items();
    		echo '<p>INFORMACION DEL VENDEDOR -</p>';
    		foreach ( $items as $item ) {
    			$product_id = $item->get_product_id();
    			$vendor_id   = wcfm_get_vendor_id_by_post( $product_id );
    			if( apply_filters( 'wcfmmp_is_allow_sold_by_linked', true ) ) {
    				$store_name = $WCFM->wcfm_vendor_support->wcfm_get_vendor_store_by_vendor( absint($vendor_id) );
    			} else {
    				$store_name = $WCFM->wcfm_vendor_support->wcfm_get_vendor_store_name_by_vendor( absint($vendor_id) );
    			}
    			$store_user  = wcfmmp_get_store( $vendor_id );
    			$email    = $store_user->get_email();
    			$phone    = $store_user->get_phone(); 
    			$address  = $store_user->get_address_string(); 
    			echo $store_name.'('.$item->get_name().') :'.$email.' '.$phone.'<br><br/>';
    		}
    	}
    }
    in reply to: Send vendor information by mail to the customer #124454
    pebi44
    Participant

    Yes you put it in function.php
    This code does is add the seller’s information (email and phone number) in the email that reaches the customer when making the purchase.

    in reply to: Send vendor information by mail to the customer #123908
    pebi44
    Participant

    This code works for me:
    add_action( ‘woocommerce_email_order_meta’, ‘add_sellerinfo_to_buyer_email’,50,4 );
    function add_sellerinfo_to_buyer_email( $order, $sent_to_admin, $plain_text, $email ) {
    global $WCFM;
    if ( !in_array( $email->id, array( ‘new_order’,’store-new-order’) )){
    $items = $order->get_items();
    echo ‘<p>INFORMACION DEL VENDEDOR -</p>’;
    foreach ( $items as $item ) {
    $product_id = $item->get_product_id();
    $vendor_id = wcfm_get_vendor_id_by_post( $product_id );
    if( apply_filters( ‘wcfmmp_is_allow_sold_by_linked’, true ) ) {
    $store_name = $WCFM->wcfm_vendor_support->wcfm_get_vendor_store_by_vendor( absint($vendor_id) );
    } else {
    $store_name = $WCFM->wcfm_vendor_support->wcfm_get_vendor_store_name_by_vendor( absint($vendor_id) );
    }
    $store_user = wcfmmp_get_store( $vendor_id );
    $email = $store_user->get_email();
    $phone = $store_user->get_phone();
    $address = $store_user->get_address_string();
    echo $store_name.'(‘.$item->get_name().’) :’.$email.’ ‘.$phone.'<br><br/>’;
    }
    }
    }

    in reply to: Distance Rate Shipping #123406
    pebi44
    Participant

    I need, if possible, disable wcfmmp_user_location_field on the checkout page for shipping zone cases.

    in reply to: Distance Rate Shipping #123399
    pebi44
    Participant

    Hello, in the vendor panel I cannot configure the “cost” to the shipping rate. Does not display the “cost” field.
    In the administration panel it can be configured.

    in reply to: Send vendor information by mail to the customer #122582
    pebi44
    Participant

    Hi, do you have any news?

    I forgot to say, I have limited the cart to purchases from a single Vendor.

    in reply to: Redirect to store page after add to cart #121790
    pebi44
    Participant

    Thanks, it worked perfect!

    in reply to: Redirect to store page after add to cart #121330
    pebi44
    Participant

    I am limiting the sale of products to one Vendor per Order

Viewing 11 posts - 1 through 11 (of 11 total)