Yes, you can remove the branding from your form by following these steps: Form Settings → Conversational Form → Enable Conversational Form Settings →Click on Navigation → Disable Show Branding.
For more details documentation: https://bit-form.com/wp-docs/conversational-form-creation-guide/#:~:text=around%20your%20form!-,Show,-Branding%3A%20With
Q: 'Typeform' type forms?
Can i create 'typeform' type forms with one question per page which auto-advance when 'Enter' is pressed.
Yes, this is possible using the Conversational Form feature in Bit Form. It allows you to build interactive, one-question-at-a-time forms that auto-advance when users press the Enter key, just like Typeform.
🔗 For More details : https://bit-form.com/wp-docs/conversational-form-creation-guide/
Q: Does Bitform have a camera-only upload feature?
Does Bitform have a camera-only upload feature? I want to create form for verified people in my organization, and i want using field that upload form camera only for take their selfie picture and another case like inspection or safety or security guard that want upload realtime picture, are bitform have this feature?
Yes, Bit Form includes a field called Advanced File Upload, which supports a Capture feature,ideal for your use case. This feature is especially useful on mobile devices and offers several capture modes: * Off –Users can only upload files from their device’s storage. * On – Users can choose to upload files from storage or capture using the device's camera.
* Use the Camera – Forces users to take a real-time photo using their front or rear camera (depending on device settings and permissions). * Use the Environment Camera – Uses the rear-facing (higher quality) camera for image capture. This makes it perfect for scenarios like identity verification, field inspections, or safety reporting.
I tried it, but the form doesn’t open the camera on mobile or desktop. Here is my setting: https://www.awesomescreenshot.com/image/55162591?key=2128a205f93a9540e83bb2830ab07265. If I turn on 'Allow File Browse,' it works on mobile, but on desktop, clicking the field opens a file browser, which I don’t want.
The Capture feature is designed specifically for mobile browsers. That’s because the capture attribute is supported by mobile devices, allowing direct access to the camera. On desktop browsers, this attribute isn’t supported, so the field will open the file selection window instead.
Yes, it’s possible to achieve this using our filter hook. Below is a custom demo code snippet you can use with the bitform_filter_after_workflow_onload_fields filter. For more details documentation: https://bit-form.com/wp-docs/developer-docs/php-filter-hooks/#bitform_filter_after_workflow_onload_fields
//Demo Code add_filter('bitform_filter_after_workflow_onload_fields', 'your_function_name', 10, 2); function your_function_name($fields, $formId) { if($formId == 4){ /* Replace 4 with your actual formId */ if(wp_is_mobile()){ $fields->{'b4-2'}->valid->hide = false; /* Replace 'b4-2' with your actual field key */ } } return $fields; }
Q: Custom Payment Gateway Integration
Does this tool support payment integration beyond Stripe and PayPal? Can I use my own custom payment gateway integration
Yes, Bit Form currently supports PayPal, Stripe, Razorpay, and Mollie. While there’s no UI for custom payment gateways at the moment, you can still trigger your own payment system using our action hooks and events. You can also save and manage transaction data using our webhook and functions. You can follow this guide: https://bit-form.com/wp-docs/payments-setup/setup-custom-payment-webhook
If you need help integrating your specific gateway, feel free to reach out—we’d be happy to assist. And if you’d like to suggest a gateway for future support, you can submit your request here: https://www.facebook.com/groups/bitapps/permalink/4088723257806464 Thanks for your interest in Bit Form!
Q: Randomisation for science
Is it possible to randomise assignment to condition and stimuli order?
Share Bit Form – WordPress Form Builder Plugin
Q: Branding
Can i remove/replace your branding on forms?
Share Bit Form – WordPress Form Builder Plugin
Yes, you can remove the branding from your form by following these steps:
Form Settings → Conversational Form → Enable Conversational Form Settings →Click on Navigation → Disable Show Branding.
For more details documentation: https://bit-form.com/wp-docs/conversational-form-creation-guide/#:~:text=around%20your%20form!-,Show,-Branding%3A%20With
Q: 'Typeform' type forms?
Can i create 'typeform' type forms with one question per page which auto-advance when 'Enter' is pressed.
Share Bit Form – WordPress Form Builder Plugin
Yes, this is possible using the Conversational Form feature in Bit Form. It allows you to build interactive, one-question-at-a-time forms that auto-advance when users press the Enter key, just like Typeform.
🔗 For More details : https://bit-form.com/wp-docs/conversational-form-creation-guide/
Q: Does Bitform have a camera-only upload feature?
Does Bitform have a camera-only upload feature?
I want to create form for verified people in my organization, and i want using field that upload form camera only for take their selfie picture and another case like inspection or safety or security guard that want upload realtime picture, are bitform have this feature?
Share Bit Form – WordPress Form Builder Plugin
Yes, Bit Form includes a field called Advanced File Upload, which supports a Capture feature,ideal for your use case.
This feature is especially useful on mobile devices and offers several capture modes:
* Off –Users can only upload files from their device’s storage.
* On – Users can choose to upload files from storage or capture using the device's camera.
* Use the Camera – Forces users to take a real-time photo using their front or rear camera (depending on device settings and permissions).
* Use the Environment Camera – Uses the rear-facing (higher quality) camera for image capture.
This makes it perfect for scenarios like identity verification, field inspections, or safety reporting.
I tried it, but the form doesn’t open the camera on mobile or desktop. Here is my setting: https://www.awesomescreenshot.com/image/55162591?key=2128a205f93a9540e83bb2830ab07265. If I turn on 'Allow File Browse,' it works on mobile, but on desktop, clicking the field opens a file browser, which I don’t want.
To enable camera functionality, please make sure 'Allow File Browse' is turned on this is required for the Capture feature to work correctly.
The Capture feature is designed specifically for mobile browsers. That’s because the capture attribute is supported by mobile devices, allowing direct access to the camera. On desktop browsers, this attribute isn’t supported, so the field will open the file selection window instead.
You can follow this guide: https://bit-form.com/wp-docs/form-fields/advanced-file-upload-settings-guide/#7-capture
Is it possible to hide the upload field when the user accesses this on a desktop?
Yes, it’s possible to achieve this using our filter hook. Below is a custom demo code snippet you can use with the bitform_filter_after_workflow_onload_fields filter.
For more details documentation: https://bit-form.com/wp-docs/developer-docs/php-filter-hooks/#bitform_filter_after_workflow_onload_fields
//Demo Code
add_filter('bitform_filter_after_workflow_onload_fields', 'your_function_name', 10, 2);
function your_function_name($fields, $formId) {
if($formId == 4){ /* Replace 4 with your actual formId */
if(wp_is_mobile()){
$fields->{'b4-2'}->valid->hide = false; /* Replace 'b4-2' with your actual field key */
}
}
return $fields;
}
Q: Custom Payment Gateway Integration
Does this tool support payment integration beyond Stripe and PayPal? Can I use my own custom payment gateway integration
Share Bit Form – WordPress Form Builder Plugin
Yes, Bit Form currently supports PayPal, Stripe, Razorpay, and Mollie.
While there’s no UI for custom payment gateways at the moment, you can still trigger your own payment system using our action hooks and events. You can also save and manage transaction data using our webhook and functions.
You can follow this guide: https://bit-form.com/wp-docs/payments-setup/setup-custom-payment-webhook
If you need help integrating your specific gateway, feel free to reach out—we’d be happy to assist.
And if you’d like to suggest a gateway for future support, you can submit your request here: https://www.facebook.com/groups/bitapps/permalink/4088723257806464
Thanks for your interest in Bit Form!