Forum Replies Created
- AuthorPosts
- April 12, 2020 at 12:30 pm in reply to: Translate "Featured Img" string – can't find on Loco #118330WCFM ForumMember
Hi,
Well, this is part WooCommerce Frontend Manager plugin.
Please sync your translation file with latest plugin files, you will have this.
Thank You
WCFM ForumMemberHI,
All attributes or only some specific one?
Between, when vendors add products “Show on Product” page option by default comes with “check”. Now if vendor disabled that then it’s his/her choice.
Thank You
WCFM ForumMemberHi,
Do you want to show this all the time or only for “Local Pickup” shipping?
Thank You
WCFM ForumMemberHi,
Well, vendors are adding only one address at their setting -> Location – https://ibb.co/nk0kB6W
What you want to change for this?
Thank You
April 12, 2020 at 12:24 pm in reply to: Filter Order Export Values on orderslist (and others) #118320WCFM ForumMemberThe problem is when exported to excel, it is interpreted as a command and will run on opening excel.
– Well, this is only because of Excel setting. Disable command execute option, this will open properly.
Thank You
WCFM ForumMemberWhat is your WCFM – WooCommerce Multivendor Marketplace plugin’s version?
WCFM ForumMemberHi,
I am not very sure, why you want to dequeue these CSS/JS files!
If you dequeue those then that page will be totally broken.
If you want to add your own style then add your custom CSS under child theme’s style.css
Thank You
WCFM ForumMemberHi,
Well, it’s not possible to override JS/CSS files.
You may add your own CSS and JS, no need to override exiting files.
Thank You
April 12, 2020 at 12:18 pm in reply to: Add Promo Code feature for vendor registration on WCFM #118315WCFM ForumMemberHi,
Please create membership plans using WC products option – https://youtu.be/SfOMIxNfr3w
Hence, membership purchase will be same as WooCommerce product purchase and vendors will able to apply coupon at cart and checkout.
Thank You
WCFM ForumMemberHi,
Please add this code snippet to your site for the purpose-
add_filter( 'wcfm_product_simple_fields_tax', function( $tax_fields ) { if( isset( $tax_fields['tax_status'] ) ) { $tax_fields['tax_status']['options'] = array( 'none' => _x( 'None', 'Tax status', 'wc-frontend-manager' ), 'taxable' => __( 'Taxable', 'wc-frontend-manager' ), 'shipping' => __( 'Shipping only', 'wc-frontend-manager' ) ); } return $tax_fields; }, 50, 1 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
April 12, 2020 at 12:10 pm in reply to: Integrating Woocommerce Deposits with Stripe Split payment gateway #118311WCFM ForumMemberHi,
Do you have any other Stripe plugin installed in your site, like WooCommerce Stripe Gateway?
Thank You
WCFM ForumMemberWell, by default this is supported by WooCommerce Booking plugin.
You may look for any such plugin, we are happy to make that compatible for vendors.
Thank You
WCFM ForumMemberKindly show me this order details page screenshot from Admin view.
You may contact us here – https://wclovers.com/setup-guidance/
We will debug this for you..Thank You
WCFM ForumMemberOK, please set Commission for vendors 100% – https://ibb.co/k33WSvL
WCFM ForumMemberPlease check at wp-admin -> WooCommerce -> Status -> Logs -> fatal_erros log -> is any error generated during product save?
WCFM ForumMemberHI,
a) is there a way to allow vendor to offer a booking for free? how?
– Sure, vendors may add product with cost “0”, hence this will be free.b) is there a way to generate – upon a booking – a zoom link? the idea is to offer video visit for all vets during the covid-19 lockdown and I would like that when a user schedules a meeting we send him the email with the zoom link
– Does appointment plugin support “zoom” yet? Please confirm from their suport.Thank you
WCFM ForumMemberWell, as I see “gravityforms” plugins throwing error.
Can you please disable this once and take a look.
Thank You
WCFM ForumMemberWe are debugging this!
April 12, 2020 at 11:16 am in reply to: Return address for email when order is assigned to delivery boy #118278WCFM ForumMemberPerhaps the “reply to address” be set to the vendor email address?
– Will do this.
WCFM ForumMemberan option for the customer to choose a time slot for delivery…
should be possible for the vendor to define which time slots delivery is still available.– Well, we have this in plan, will add this prohibition very soon.
Between, there has many such plugins for WooCommerce, but none of those support vendors. So, if you will use those then vendor’s will not able to setup their preferred delivery solts.
Thank You
WCFM ForumMemberis it possible to add a map during checkout so people can point their location in order to get GPS coordinates instead of only an address? Unfortunately, address don’t work very well here.
– We already have this in plan, will add in next update.
April 12, 2020 at 11:08 am in reply to: Delivery Boy Enhancement – Add a note when assigning an order to Delivery Boy #118274WCFM ForumMemberAre you able to add a note section to the order assignment window when a vendor is assigning so the vendor (if they choose) can put in a note something like
– Sure, we will add this option in next update.
WCFM ForumMemberIf i choose commission 90 % that means the admin gets 10 % and the vendor gets 90 %?
– Yeah right.WCFM ForumMemberHi,
Please remove bank details from WooCommerce payment setting. Is this really required for you?
Thank You
WCFM ForumMemberHi,
Add this code snippet to your site for the purpose-
add_filter( 'wcfm_product_manage_fields_general', function( $general_fields, $product_id ) { $general_fields = wcfm_hide_field( '_subscription_sign_up_fee', $general_fields ); $general_fields = wcfm_hide_field( '_subscription_trial_length', $general_fields ); $general_fields = wcfm_hide_field( '_subscription_trial_period', $general_fields ); return $general_fields; }, 50, 2 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
- AuthorPosts