New Product missing 'Extra' info

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 3 reply threads
  • Author
    Posts
    • #18673
      kasaga311
      Guest

      Hi,

      We are using the WCFM Ultimate and are trying to create New Products from ‘Admin’, ‘Vendor’ and ‘Shop Manager’ logins.

      However, we see that there is no provision to create ‘Extra’ details of the Product like ‘Product video’ and others offered by the ‘wp-admin/Add New’ page.

      Is this something planned for a nearing release or is there something that we are missing on including to see that tab?

      Please let me know at the earliest as we have urgent requirements for our client.

      Thanks,
      -Kasaga

    • #18675
      WCFM Forum
      Member

      Hi,

      This option “Extra” is not by default from WooCommerce.
      Possibly you are using “Flatsome” theme and that added this additional tab under product manager.

      This can be easily added in front-end product manager section as well using WCFM Custom field.

      PFA, additional field settings.

      And this code to your child theme’s functions.php –

      function wcfm_flatsome_custom_field_group_data_save( $group_value, $group_name ) {
      if( $group_name == ‘wc_productdata_options’ ) {
      $group_value = array( 0 => $group_value );
      }
      return $group_value;
      }
      add_filter( ‘wcfm_custom_field_group_data_save’, ‘wcfm_flatsome_custom_field_group_data_save’, 50, 2 );

      function wcfm_flatsome_custom_field_group_data_value( $group_value, $group_name ) {
      if( $group_name == ‘wc_productdata_options’ ) {
      if( $group_value && is_array( $group_value ) && isset( $group_value[0] ) ) {
      $group_value = $group_value[0];
      }
      }
      return $group_value;
      }
      add_filter( ‘wcfm_custom_field_group_data_value’, ‘wcfm_flatsome_custom_field_group_data_value’, 50, 2 );

      Please know me if I can help you in this some other way.

      Thank You

      Attachments:
      You must be logged in to view attached files.
    • #18713
      kasaga311
      Participant
      This reply has been marked as private.
    • #18723
      WCFM Forum
      Member

      Welcome 🙂

      Thanks for confirming me this.

      Regards
      Simha

Viewing 3 reply threads
  • The topic ‘New Product missing 'Extra' info’ is closed to new replies.