Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Ultimate › Add Product | SKU
- This topic has 6 replies, 2 voices, and was last updated 6 years, 3 months ago by WCFM Forum.
- AuthorPosts
- July 28, 2018 at 10:47 am #27026
- July 28, 2018 at 11:25 am #27033WCFM ForumMember
Hi,
For generating automatic SKU you may use this plugin – https://wordpress.org/plugins/woocommerce-product-sku-generator/
WCfM compatible with this as well.Variations has all options, kindly check this – https://ibb.co/f7YiM8
Are you using WCfM Free only?
Thank You
- July 28, 2018 at 11:36 am #27035wwsAdminParticipant
No i am using wcfm ultimate as well. but in vendor store it is not showing >? is there any setting which i did ?
- July 28, 2018 at 12:15 pm #27038wwsAdminParticipant
Hello team,
Thanks for suggesting plugin, really helped.
But in wcfm->product-> page SKU box is open where i can enter sku, although it is automatically calculated. where as in woocommerce -> product it is shown in text no inputthanks
- July 29, 2018 at 5:45 am #27074WCFM ForumMember
Hi,
Most convenient way for this -> OFF “SKU” capability for vendors.
Otherwise, make this invisible not a big deal, just add this code snippet –
function wcfm_custom_297_product_fields_stock( $stock_fields, $product_id, $product_type ) { if( isset( $stock_fields['sku'] ) ) { $stock_fields['sku']['class'] = 'wcfm_custom_hide'; $stock_fields['sku']['label_class'] = 'wcfm_custom_hide'; } return $stock_fields; } add_filter( 'wcfm_product_fields_stock', 'wcfm_custom_297_product_fields_stock', 50, 3 );
Thank You
- July 29, 2018 at 6:40 am #27086wwsAdminParticipant
Ohh i have set it off hence not getting the SKU,
Thanks - July 29, 2018 at 6:44 am #27088WCFM ForumMember
Hi,
Just add that code and your requirement will be fulfilled.
Thank You
- AuthorPosts
- The topic ‘Add Product | SKU’ is closed to new replies.