B2B sale option

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!

Viewing 34 reply threads
  • Author
    Posts
    • #30910
      addy
      Guest

      good morning
      awesome wc lovers
      i would like to add minimum order quantity option for my vendors and option should be on product page and vendor dashboard for B@B sale.
      here is my second question: You can integrate any Third Party plugin using Custom Fields, but you should use the same fields name as used by Third Party plugins.
      so i can use plugin for minimum order quantity “what does mean field here”
      once again thanks to come up with wclovers multivendor marketplace.
      thanks for ur fastest support in advance.
      so in love with wc locers

    • #31026
      WCFM Forum
      Keymaster

      Hi,

      Thanks for get in touch with us and you are always welcome πŸ™‚

      “here is my second question: You can integrate any Third Party plugin using Custom Fields, but you should use the same fields name as used by Third Party plugins.”

      – Let me clear this one. Hope you know WP “meta”. Now for a product all additional info store in post_meta with a specific “meta_key”.
      Now, suppose you are using a min order value plugin which store “min order value” with meta_key -> “_product_order_min_val”, so when you are creating WCFM custom field you have to create field with this same name “_product_order_min_val”.

      So you have to now this “meta_key” for that custom plugin.

      Please know me if you still have any queries regarding this.

      Between, which plugin you are trying to use.

      Thanks again for your appreciation and if you get a chance then please add a review forme – https://wordpress.org/support/plugin/wc-multivendor-marketplace/reviews/

      Thank You

    • #31237
      addy
      Participant

      hello good morning wc lovers
      i tried Download
      Woocommerce Minimum and Maximum Quantity plugin, https://wordpress.org/plugins/woo-min-max-quantity-limit/ and i added ‘meta key’ all goes fine when i am adding product from woo commerce on checkout it says minimum order should br xyz(value) much but the same i tried with wcfm it just proceed to checkout page.help me.
      Thanks for wcfm multi-vendor marketplace

    • #31280
      addy
      Participant

      hay wc lovers
      good morning,
      i found the solution by using woocommerce extension, thanks for your support. your answer was so specific and clear it help me to find solution.
      here is my next question
      1# how to hide block name or label name from product page as per requirement.
      2# how to change font size of block name or label name on product page.

      thanks for best multi-vendor plugin
      lots of love for wc lovers

    • #31319
      WCFM Forum
      Keymaster

      Hi,

      You are always welcome and really thanks for your appreciation.

      1# how to hide block name or label name from product page as per requirement.
      – Can you please show me which labels you want to change? it will be easier for me to guide you.

      2# how to change font size of block name or label name on product page.
      – Well, you can do this easily just by some CSS tweaks, add custom css in your child theme’s style.css

      Thank you

    • #31404
      addy
      Participant

      Good morning wc lovers
      I mean when we are adding custom field from back end it showing on product page. Block and label, I want to show only label name
      For example:
      I make custom field for
      (block) phone number
      ( label) phone number
      (type) number
      So now it will show both in product page like this
      (block) Phone number
      (label) Phone number 123456789
      So I want to show only label and font bigger for this.
      Please write css for me too it will be great help.
      Hope you understand me,

      Thanks for your great support as always.

      Attachments:
      You must be logged in to view attached files.
    • #31436
      WCFM Forum
      Keymaster

      Hi,

      Thanks for the detailed description.

      I understand your requirement.

      I will help you in this after WCFM Ultimate next update (5.0.6).

      Thank You

    • #31792
      WCFM Forum
      Keymaster

      Hi,

      Kindly add this line of PHP code for the purpose (add code in theme’s functions.php) –

      add_filter( 'wcfm_is_allow_custom_field_block_name_display', '__return_false' );

      For make label font larger use this CSS –

      label.wcfm_custom_field_display_label { font-size: 18px; }

      Thank You

    • #33879
      addy
      Participant

      Hi
      WC lovers
      Once again thanks for the wcfm marketplace and great support…
      I would like to ask how can I show custom field on home page
      Please find the attachment

      Attachments:
      You must be logged in to view attached files.
    • #33911
      WCFM Forum
      Keymaster

      Hi,

      It’s also possible using WC hooks.
      Between, which custom field you want to show?

      Thank You

    • #33924
      addy
      Participant

      Hello wclovers
      1# I want to show sold by on product/shop page also.
      2# I make some custom field by using wcfm example text aria for custom message it’s showing on single product page perfectly but I want to show on product/shop page.
      I am not good in coding please can you help me
      Thanks

    • #33967
      WCFM Forum
      Keymaster

      Hi,

      1# I want to show sold by on product/shop page also.
      – This is by default feature. Between, which multi-vendor plugin you are using?

      2# I make some custom field by using wcfm example text aria for custom message it’s showing on single product page perfectly but I want to show on product/shop page.
      – Sure, we will help you in this. But for that I have to access your site.

      Thank You

    • #34003
      addy
      Participant
      This reply has been marked as private.
    • #34025
      WCFM Forum
      Keymaster

      Hi,

      Thanks for the details.

      # i want to show the store/vendor name on homepage – DONE
      # i have created custom field minimum order quantity using meta minimum_allowed_quantity from a plugin – DONE

      https://ibb.co/c8u2ML

      # i want to change dash board text Price to wholesale price was and sale wholesale now – not getting this clearly.

      Thank You

    • #34037
      addy
      Participant

      Thanks for awesome support lots of love and respect for you guys

      This is for regular price label change function wcfm_custom_product_fields_pricing( $pricing_fields, $product_id, $product_type ) {
      if( isset( $pricing_fields[‘regular_price’] ) ) {
      $pricing_fields[‘regular_price’][‘label’] = ‘Regular Price’;
      }
      return $pricing_fields;
      }
      add_filter( ‘wcfm_product_manage_fields_pricing’, ‘wcfm_custom_product_fields_pricing’, 50, 3 );

      I want [‘sale_price’] label change also
      Thanks you again

    • #34038
      WCFM Forum
      Keymaster

      Hi,

      You are welcome πŸ™‚

      add this within this function –

      if( isset( $pricing_fields['sale_price'] ) ) {
      $pricing_fields['sale_price']['label'] = 'Sales Price';
      }

      Thank You

    • #34083
      addy
      Participant
      This reply has been marked as private.
    • #34125
      WCFM Forum
      Keymaster

      Hi,

      DONE! Take a look.

      Thank You

    • #34149
      addy
      Participant

      Thank you so much
      Now I have a second problem vendor verification not showing In notification but showing in email
      #2 fallow button not showing on vendor store banner
      Please help
      Thanks again for your fastest support

    • #34196
      WCFM Forum
      Keymaster

      Hi,

      You are welcome πŸ™‚

      I am checking this.

      Thank You

    • #34432
      WCFM Forum
      Keymaster

      Hi,

      Follow button is there – https://ibb.co/e9Aoqf

      Well, follow button is only available to logged in users.

      Thank You

    • #34470
      addy
      Participant

      Thank you so much
      As your marketplace having a best features i dont want to miss any of them
      thanks for your support
      still i cant verify vendors because its not sending notification but getting email verification pending for review,
      thanks again
      Hoping you will solve this problem too ASAP

    • #34490
      WCFM Forum
      Keymaster

      Hi,

      We are looking in to this and if it’s WCFM problem then we will definitely resolve by next update.

      I am also debugging this to your site!

      Thank You

    • #34761
      WCFM Forum
      Keymaster

      Hi,

      WCFM Ultimate new version has just released and this issue has been resolved.

      Kindly update yours and take a look.

      Thank You

    • #35156
      addy
      Participant

      wow its really nice again and again falling love with wc lovers
      you guys number #1 as always
      THE BEST SUPPORT AND FASTEST
      Suggestion: if on the fields of verification we can add some “help test (you can use clear photo from your phone) will be more nice
      wishing for you to capture all multivendor market plugin
      best regards
      ” when your going to launch theme??”

    • #35157
      addy
      Participant

      i am interested in WOOCOMMERCE FRONTEND MANAGER – GROUP & STAFF
      is this plugin can help me to………….
      # making vendor managers who will appoint vendors to open there store .(if other vendors wants to join without vendor manager they can join as of right now my website doing so i mean no change in this)
      if some one buy from vendor store
      vendor manager and admin will get message of item sold from x vendor store
      example M is vendor manage, V is vendor, c is customer and A is admin
      M (vendor manager) appoint v (vendor) to open there store
      now c (customer) buy product t-shirt
      so M(vendor manager), V (vendor) and A (admin) will get notification C(customer) bought Tshirt
      is it possible?
      thanks

    • #35159
      addy
      Participant
      This reply has been marked as private.
    • #35244
      Bingal
      Guest

      Hi,

      First of all, thanks for your appreciations, really pleasure for us.

      I understand you problem, it’s a small CSS tweak I guess. I am looking into this.

      Between, WCFM Groups manager are dedicated for managing their group vendors products and orders.

      I am checking your theme issues and will update you soon.

      Thank you

    • #35291
      addy
      Participant

      Hi
      Good day
      I got email from my theme
      Please contact this plugin to get the function to call these fields.
      Then add action in file /revo/libs/woocommerce-hook.php
      http://prntscr.com/lbpm5k
      Please help me for it
      Thanks

      Attachments:
      You must be logged in to view attached files.
    • #35393
      WCFM Forum
      Keymaster

      Hi,

      Ok, I am checking this.

      Thanks for the details.

    • #35394
      WCFM Forum
      Keymaster

      Hi,

      I have made changes as per their instruction.

      Kindly take a look.

      Thank You

    • #35398
      addy
      Participant

      Hi
      Good day custom field not visible on homepage again
      The theme have worst support

      Please help me for this
      Thank you

    • #35494
      WCFM Forum
      Keymaster

      Hi,

      Custom field visible, but only when you will hover on a product.

      I have changed hook as per theme support suggestion.

      Thank You

    • #35560
      addy
      Participant

      hello
      first i want to say thanks for giving your precious time to us.
      thanks its works but i changeback the hook as you change before
      But still i need your help
      i am using revo theme https://themeforest.net/item/revo-multipurpose-responsive-woocommerce-theme/18276186 and they dont support at all.
      minimum order quantity, and its done already by the help of wclovers on the desktop view.
      but the problem is when i am using mobile theme the custom field from wcfm premium not showing on the mobile view and in the slider and other pages of mobile view please visit from mobile http://www.misterwholesaler.com because they have themes\revo\mlayouts. the mobile layout option you can see in appearance~theme option.
      i need this field to show minimum order quantity all over the website pages in mobile view too.
      i attach screenshot from phone and desktop too.
      please take a look
      thanks

      Attachments:
      You must be logged in to view attached files.
    • #35583
      WCFM Forum
      Keymaster

      Hi,

      I have replied you on this at email.

      Please reply me over there.

      Thank You

Viewing 34 reply threads
  • The topic ‘B2B sale option’ is closed to new replies.