• I am trying to import the fields that I created manually in a text record. But when I export the test records I dont see any additional fields representing the added drop downs in the test record. How can I tell what the field names are and the content structure needed in order to bulk import products with added fields?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    There is a modified version of this plugin with “CSV export-import” feature:
    http://hottons.com/po_modifications

    Also there is a plugin that you can use to export product options:
    https://wordpress.org/plugins/pofw-csv-export-import/

    Stanislav

    good afternoon, I want to make a synchronizer from python using the Woocommerce API but I don’t know what the property is called to add the restrictions

    Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    This plugin has no functions for Woocommerce API.

    But you can write your custom code for API.

    Then in your function you can get options of some product with this PHP code:

    
      $productOptions = array();
      if (function_exists('Pektsekye_PO')){
        include_once(Pektsekye_PO()->getPluginPath() . 'Model/Option.php');		
        $optionModel =  new Pektsekye_ProductOptions_Model_Option();      
        $productOptions = $optionModel->getProductOptions($productId);
      }
    

    Stanislav

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Import fields for product options’ is closed to new replies.