I activated the importer module but it looks like im not able to import in self created fields in ACF. Is that an ACF pro feature or am I missing something.
another question regarding this importer. Would need to disable a lot of fields in there so vendors dont make mistakes. How easy is its to only show about 10 columns in the importer?
-> Regarding disabling specific fields, just to let you know: our plugin already tries to disable / remove / sanitise the input of vendors, so that they cannot make significant mistakes.
For example if vendors enter the IDs of products that belong to other vendors, enter more products than max, enter options they are not allowed (e.g. tags, upsells etc), the plugin will automatically adjust the import process.
You can further remove options from the dropdown by using this code snippet and editing / adding to it:
You would need to enter the slug of each option (e.g. Upsells has the slug upsell_ids)
To view the slugs of each option, the simplest way may be to inspect the dropdown and check the "value" field for each option:
Regarding ACF imports, I do not have specific information on this. Are you seeing that ACF fields show in the admin site backend import but do not show in the frontend import?
I activated the importer module but it looks like im not able to import in self created fields in ACF. Is that an ACF pro feature or am I missing something.
another question regarding this importer. Would need to disable a lot of fields in there so vendors dont make mistakes. How easy is its to only show about 10 columns in the importer?
I need this too
Hi there,
Glad to assist,
-> Regarding disabling specific fields, just to let you know: our plugin already tries to disable / remove / sanitise the input of vendors, so that they cannot make significant mistakes.
For example if vendors enter the IDs of products that belong to other vendors, enter more products than max, enter options they are not allowed (e.g. tags, upsells etc), the plugin will automatically adjust the import process.
You can further remove options from the dropdown by using this code snippet and editing / adding to it:
You would need to enter the slug of each option (e.g. Upsells has the slug upsell_ids)
To view the slugs of each option, the simplest way may be to inspect the dropdown and check the "value" field for each option:
Regarding ACF imports, I do not have specific information on this. Are you seeing that ACF fields show in the admin site backend import but do not show in the frontend import?
Kind regards,
Stefan
this seems to work except when there's a label involved? like name, sku, description I can hide but not sale_price etc.
To hide the sale price, please use:
It is similar for other fields with a label. For example to hide the "width" field, you can use:
thanks. got them almost all hidden except the what's under the download label and attributes label
To completely remove all options under Downloads and Attributes, you can use:
It seems some of those have a dynamic name such as "downloads:fieldname", so it is needed to remove them in a more complex way, as above.