Best Multi Vendor Marketplace Plugin for WordPress › Forums › WCFM – Ultimate › Remove promotion + schedule + description
- This topic has 5 replies, 2 voices, and was last updated 8 years, 3 months ago by
WCFM Forum.
- AuthorPosts
- January 5, 2018 at 9:56 am #17581
anthonyrusso.u
ParticipantHello,
Is there a way to remove promotion, schedule and description fields for vendors ?
Regards,
Anthony.
- January 5, 2018 at 1:44 pm #17582
WCFM Forum
MemberHI,
Yes, it’s absolutely possible to disable any form fields in WCFM.
Kindly know me, which fields you want to disable.
It will be best if you show us a screenshot of the same.Thank You
- January 5, 2018 at 2:09 pm #17585
anthonyrusso.u
ParticipantHello,
On the page “add a new product” i would like to remove promotion price + schedule date when the promotional price appear + description field.
You’ll find the screenshot attached.
Regards,
Attachments:
You must be logged in to view attached files. - January 5, 2018 at 2:19 pm #17588
WCFM Forum
MemberHi,
Thanks for get screenshot.
Here is the custom code to disable those fields, just add this code in your theme’s functions.php –
function wcfm_custom_product_manage_fields_pricing( $pricing_fields, $product_id, $product_type ) { if( isset( $pricing_fields['sale_price'] ) ) { unset( $pricing_fields['sale_price'] ); } return $pricing_fields; } add_filter( 'wcfm_product_manage_fields_pricing', 'wcfm_custom_product_manage_fields_pricing', 50, 3 ); function wcfm_custom_product_manage_fields_content( $content_fields, $product_id, $product_type ) { unset( $content_fields['description'] ); return $content_fields; } add_filter( 'wcfm_product_manage_fields_content', 'wcfm_custom_product_manage_fields_content', 50, 3 );Please know me is this works for you or not!
Thank You
Simha - January 5, 2018 at 3:10 pm #17590
anthonyrusso.u
ParticipantHello Simha !
It works perfectly. Thanks a lot.
Best Regards,
Anthony.
- January 5, 2018 at 4:03 pm #17591
WCFM Forum
MemberGreat … thanks for knowing me this 🙂
- AuthorPosts
- The topic ‘Remove promotion + schedule + description’ is closed to new replies.