Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author David Aguilera

    (@davilera)

    Hi!

    Our plugin saves the URL of the external featured image in a custom field named _nelioefi_url. When bulk uploading products, you simply need to define that custom field.

    The custom field is “private” or “hidden” (note the initial underscore). If you can’t define the value of this custom field while bulk-uploading products, you can use a different custom field. For instance, to use new_meta_key_name:

    add_filter( 'nelioefi_post_meta_key', 'prefix_nelioefi_change_meta_key' );
    function prefix_nelioefi_change_meta_key( $name ) {
      return 'new_meta_key_name';
    }

    Let me know if this helped!

    Plugin Author David Aguilera

    (@davilera)

    I’ll assume my snipped worked. I’m closing this support thread.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bulk Upload in Woocommerce’ is closed to new replies.