You have created product fields or user fields using ACF?
Hi, thanks for the reply
what do you mean by “You have created product fields or user fields using ACF” ?
i have created a group of text fields using ACF, and i couldn’t assign them to the vendor’s profile or setting page.
What i’am trying to do here is replace the “bank transfer” payment fields with the ones created in ACF, but if there is a way to remove just the last 4 fields (see the picture) from the vendor’s “bank transfer” option, with a piece of code or something it would be great.
See The ScreenShot
HI,
What i’am trying to do here is replace the “bank transfer” payment fields with the ones created in ACF, but if there is a way to remove just the last 4 fields (see the picture) from the vendor’s “bank transfer” option, with a piece of code or something it would be great.
– ACF is not required here, just add this code snippet to your site –
function wcfm_marketplace_settings_fields_hide( $address_fields ) {
$address_fields = wcfm_hide_field( 'routing_number', $address_fields );
$address_fields = wcfm_hide_field( 'iban', $address_fields );
$address_fields = wcfm_hide_field( 'swift', $address_fields );
$address_fields = wcfm_hide_field( 'ifsc', $address_fields );
return $address_fields;
}
add_filter( 'wcfm_marketplace_settings_fields_billing_bank', 'wcfm_marketplace_settings_fields_hide' );
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://ww.wp.xz.cn/plugins/code-snippets/
Thank You
Hi again,
I added the code in child theme function.php, and it worked straight away,
you’re just absolutely amazing, the plugin and you 😉
Thank you for your Help
You are always welcome 🙂
Let me know if there’s anything else we can help you with.
Can we ask for a favor? Would you mind taking a few minutes to review our plugin at https://ww.wp.xz.cn/support/plugin/wc-multivendor-marketplace/reviews/ and let others know about your 5 Star experience with WCFM Marketplace. Also, follow us on Twitter https://twitter.com/wcfmmp for more exciting news, important updates, and irresistible offers.
Hi,
This is the second request to help me adding two fields in vendor store settings
and i hope to be lucky this time to get a response.
First Field : Approvals
Second field : Certificates
Function: Admin will create the data to allow vendors made a selection and then showing as two search widgets in store list sidebar.
Please provide me the codes and i will add it.
https://ibb.co/9nG9hCM
https://ibb.co/jb6LXtH
HI,
Please add this two fields for vendor registration form. https://wclovers.com/knowledgebase/wcfm-marketplace-vendor-registration/
Now, add “Store List: Meta Filter” widget under store list sidebar to add filter using these fields – https://ibb.co/wJwB8c7
Thank you
Hi,
Many thanks for your response, actually, i will follow your instructions at present.
Thanks again
-
This reply was modified 6 years, 1 month ago by
battota.