Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Ultimate › download products
Tagged: download products
- This topic has 6 replies, 2 voices, and was last updated 4 years, 7 months ago by Sushobhan.
- AuthorPosts
- April 23, 2020 at 11:30 am #122074nakedharmonixParticipant
Hi,
I need to disable the “require” in the WCFM download product settings.
What can I do?
Regards,
TK - April 23, 2020 at 11:34 am #122075nakedharmonixParticipant
This field.
Attachments:
You must be logged in to view attached files. - April 23, 2020 at 3:13 pm #122156SushobhanKeymaster
Hi
Use the following snippet to do so-add_filter( 'wcfm_product_fields_downloadable', function($downloadable_fields) { if ( isset( $downloadable_fields['downloadable_files']['options']['name'] ) ) { unset( $downloadable_fields['downloadable_files']['options']['name']['custom_attributes']['required'] ); } if ( isset( $downloadable_fields['downloadable_files']['options']['file'] ) ) { unset( $downloadable_fields['downloadable_files']['options']['file']['custom_attributes']['required'] ); } return $downloadable_fields; } );
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/
Let me know how it goes.
Thanks! - April 23, 2020 at 7:32 pm #122228nakedharmonixParticipant
Hi,
Thank you for your quick response.
However, I am asked to fill in the shipping address on payment, even though I have checked “Download” in the product settings. - April 24, 2020 at 11:24 am #122410SushobhanKeymaster
Hello,
Take a look at this plugin – https://wordpress.org/plugins/woo-checkout-for-digital-goods/
From its description it seems like, it can be helpful for your purpose.
Thank You! - April 25, 2020 at 2:33 am #122729nakedharmonixParticipant
Thank you for your quick response!
The order status of the virtual product stops in Processing.
Is there a solution to this problem? - April 25, 2020 at 1:33 pm #122845SushobhanKeymaster
There is a plugin that can autocomplete orders – https://wordpress.org/plugins/autocomplete-woocommerce-orders/
Give it a try and see if that is what you want.
Thanks!
- AuthorPosts
- You must be logged in to reply to this topic.